Index: clang/lib/AST/Interp/Interp.cpp =================================================================== --- clang/lib/AST/Interp/Interp.cpp +++ clang/lib/AST/Interp/Interp.cpp @@ -387,7 +387,7 @@ size_t NumElems = CAT->getSize().getZExtValue(); QualType ElemType = CAT->getElementType(); - if (isa(ElemType.getTypePtr())) { + if (ElemType->isRecordType()) { const Record *R = BasePtr.getElemRecord(); for (size_t I = 0; I != NumElems; ++I) { Pointer ElemPtr = BasePtr.atIndex(I).narrow(); Index: clang/test/AST/Interp/cxx20.cpp =================================================================== --- clang/test/AST/Interp/cxx20.cpp +++ clang/test/AST/Interp/cxx20.cpp @@ -138,8 +138,8 @@ namespace UninitializedFields { class A { public: - int a; // expected-note 2{{subobject declared here}} \ - // ref-note 2{{subobject declared here}} + int a; // expected-note 3{{subobject declared here}} \ + // ref-note 3{{subobject declared here}} constexpr A() {} }; constexpr A a; // expected-error {{must be initialized by a constant expression}} \ @@ -174,10 +174,6 @@ // ref-error {{must be initialized by a constant expression}} \ // ref-note {{subobject of type 'int' is not initialized}} - - // FIXME: These two are currently disabled because the array fields - // cannot be initialized. -#if 0 class C3 { public: A a[2]; @@ -198,7 +194,6 @@ // expected-note {{subobject of type 'bool' is not initialized}} \ // ref-error {{must be initialized by a constant expression}} \ // ref-note {{subobject of type 'bool' is not initialized}} -#endif }; namespace ConstThis {