Sema relies on this assumption.
Follow-up to r197848.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@197850
91177308-0d34-0410-b5e6-
96231b3b80d8
void Decl::setInvalidDecl(bool Invalid) {
InvalidDecl = Invalid;
+ assert(!isa<TagDecl>(this) || !cast<TagDecl>(this)->isCompleteDefinition());
if (Invalid && !isa<ParmVarDecl>(this)) {
// Defensive maneuver for ill-formed code: we're likely not to make it to
// a point where we set the access specifier, so default it to "public"