def err_static_assert_failed : Error<"static_assert failed \"%0\"">;
def err_abstract_type_in_decl : Error<
- "%select{return|parameter|variable|field}0 type %1 is an abstract class">;
+ "%select{return|parameter|variable|field}1 type %0 is an abstract class">;
+def err_allocation_of_abstract_type : Error<
+ "allocation of an object of abstract type %0">;
def note_pure_virtual_function : Note<
"pure virtual function %0">;
SourceLocation Loc, SourceRange Range);
std::string getAmbiguousPathsDisplayString(BasePaths &Paths);
- bool RequireNonAbstractType(SourceLocation Loc, QualType T, unsigned SelID);
+ bool RequireNonAbstractType(SourceLocation Loc, QualType T,
+ unsigned DiagID, unsigned SelID);
//===--------------------------------------------------------------------===//
// C++ Overloaded Operators [C++ 13.5]
}
// The variable can not have an abstract class type.
- if (RequireNonAbstractType(D.getIdentifierLoc(), R, 2 /* variable type */))
+ if (RequireNonAbstractType(D.getIdentifierLoc(), R,
+ diag::err_abstract_type_in_decl,
+ 2 /* variable type */))
InvalidDecl = true;
// The variable can not
// Check that the return type is not an abstract class type.
if (RequireNonAbstractType(D.getIdentifierLoc(),
R->getAsFunctionType()->getResultType(),
+ diag::err_abstract_type_in_decl,
0 /* return type */))
InvalidDecl = true;
// Function parameters cannot have abstract class types.
if (RequireNonAbstractType(PVD->getLocation(), PVD->getType(),
+ diag::err_abstract_type_in_decl,
1 /* parameter type */))
InvalidDecl = true;
Params.push_back(PVD);
}
// Fields can not have abstract class types
- if (RequireNonAbstractType(Loc, T, 3 /* field type */))
+ if (RequireNonAbstractType(Loc, T, diag::err_abstract_type_in_decl,
+ 3 /* field type */))
InvalidDecl = true;
// If this is declared as a bit-field, check the bit-field.
}
bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
- unsigned SelID) {
+ unsigned DiagID, unsigned SelID) {
if (!getLangOptions().CPlusPlus)
return false;
if (!RD->isAbstract())
return false;
- Diag(Loc, diag::err_abstract_type_in_decl) << SelID << RD->getDeclName();
+ Diag(Loc, DiagID) << RD->getDeclName() << SelID;
// Check if we've already emitted the list of pure virtual functions for this
// class.
if (CheckAllocatedType(AllocType, D))
return ExprError();
+ if (RequireNonAbstractType(D.getSourceRange().getBegin(), AllocType,
+ diag::err_allocation_of_abstract_type, 0))
+ return ExprError();
+
QualType ResultType = AllocType->isDependentType()
? Context.DependentTy
: Context.getPointerType(AllocType);
static_assert(!__is_abstract(E), "E inherits from an abstract class but implements f");
+C *d = new C; // expected-error {{allocation of an object of abstract type 'C'}}
+
C c; // expected-error {{variable type 'C' is an abstract class}}
void t1(C c); // expected-error {{parameter type 'C' is an abstract class}}
void t2(C); // expected-error {{parameter type 'C' is an abstract class}}
struct S {
C c; // expected-error {{field type 'C' is an abstract class}}
};
+