blob: 8c38276641d41129c9e1b269f10178dfb9ae3944 (
plain)
1
2
3
4
5
6
7
|
// RUN: %clang_cc1 -std=c++1z -verify %s
struct X {
static struct A a;
static inline struct B b; // expected-error {{incomplete type}} expected-note {{forward decl}}
static inline struct C c = {}; // expected-error {{incomplete type}} expected-note {{forward decl}}
};
|