Index: clang/lib/Sema/SemaDecl.cpp =================================================================== --- clang/lib/Sema/SemaDecl.cpp +++ clang/lib/Sema/SemaDecl.cpp @@ -5020,6 +5020,8 @@ /*BitWidth=*/nullptr, /*Mutable=*/false, /*InitStyle=*/ICIS_NoInit); Anon->setAccess(AS); + ProcessDeclAttributes(S, Anon, Dc); + if (getLangOpts().CPlusPlus) FieldCollector->Add(cast(Anon)); } else { @@ -5033,6 +5035,7 @@ SC = SC_None; } + assert(DS.getAttributes().empty() && "No attribute expected"); Anon = VarDecl::Create(Context, Owner, DS.getBeginLoc(), Record->getLocation(), /*IdentifierInfo=*/nullptr, Context.getTypeDeclType(Record), TInfo, SC); Index: clang/test/AST/pr43983.cpp =================================================================== --- /dev/null +++ clang/test/AST/pr43983.cpp @@ -0,0 +1,7 @@ +// RUN: %clang_cc1 -fsyntax-only %s -ast-dump | FileCheck %s + +struct B { _Alignas(64) struct { int b; }; }; + +// CHECK: AlignedAttr {{.*}} _Alignas +// CHECK: ConstantExpr {{.*}} 64 +// CHECK: IntegerLiteral {{.*}} 64