brintos

brintos / llvm-project-archived public Read only

0
0
Text · 276 B · 8c38276 Raw
8 lines · cpp
1// RUN: %clang_cc1 -std=c++1z -verify %s2 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};8