Without this, no tests fail if I remove the Diag() in the first if in
Sema::mergeMSInheritanceAttr().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@281136
91177308-0d34-0410-b5e6-
96231b3b80d8
#pragma pointers_to_members(single) // expected-error{{unexpected 'single'}}
#endif
+
+namespace merging {
+struct __single_inheritance S;
+struct __single_inheritance S;
+
+struct __single_inheritance M; // expected-note{{previous inheritance model specified here}}
+struct __multiple_inheritance M; // expected-error{{inheritance model does not match previous declaration}}
+}