xref: /aosp_15_r20/external/clang/test/CXX/class/class.static/class.static.data/p2.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -std=c++1z -verify %s
2 
3 struct X {
4   static struct A a;
5   static inline struct B b; // expected-error {{incomplete type}} expected-note {{forward decl}}
6   static inline struct C c = {}; // expected-error {{incomplete type}} expected-note {{forward decl}}
7 };
8