Remove FIXMEs: these are covered by a core issue which we don't yet implement

(but we happen to get this part right).

llvm-svn: 177958
This commit is contained in:
Richard Smith 2013-03-26 01:17:18 +00:00
parent 7447af48b1
commit b2bfad2355
1 changed files with 0 additions and 2 deletions

View File

@ -88,12 +88,10 @@ namespace InhCtor {
};
};
struct Z : A {
// FIXME: Core wording says this is invalid, but we and g++ accept.
using A::A::A;
};
template<typename T>
struct ZT : T::T {
// FIXME: Core wording says this is invalid, but we and g++ accept.
using T::T::T;
};
}