diff --git a/clang/lib/Sema/SemaExprMember.cpp b/clang/lib/Sema/SemaExprMember.cpp index 680ca99d660e..c737d7bfd442 100644 --- a/clang/lib/Sema/SemaExprMember.cpp +++ b/clang/lib/Sema/SemaExprMember.cpp @@ -848,7 +848,7 @@ Sema::BuildAnonymousStructUnionMemberReference(const CXXScopeSpec &SS, // Build the first member access in the chain with full information. result = BuildFieldReferenceExpr(result, baseObjectIsPointer, SourceLocation(), - SS, field, foundDecl, memberNameInfo) + EmptySS, field, foundDecl, memberNameInfo) .get(); if (!result) return ExprError(); diff --git a/clang/test/SemaCXX/PR35832.cpp b/clang/test/SemaCXX/PR35832.cpp deleted file mode 100644 index 67dd3c1dfad1..000000000000 --- a/clang/test/SemaCXX/PR35832.cpp +++ /dev/null @@ -1,19 +0,0 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s - -// expected-no-diagnostics - -class B { -public: - int i; - struct { struct { union { int j; }; }; }; -}; - -class X : public B { }; -class Y : public B { }; - -class Z : public X, Y { -public: - int a() { return X::i; } - int b() { return X::j; } - int c() { return this->X::j; } -};