blob: 8c38276641d41129c9e1b269f10178dfb9ae3944 [file] [log] [blame]
Richard Smith62f19e72016-06-25 00:15:56 +00001// RUN: %clang_cc1 -std=c++1z -verify %s
2
3struct 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};