llvm-for-llvmta/tools/clang/test/SemaCXX/PR6618.cpp
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

14 lines
249 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
class bar; // expected-note {{forward declaration of 'bar'}}
struct zed {
bar g; // expected-error {{field has incomplete type}}
};
class baz {
zed h;
};
void f() {
enum {
e = sizeof(baz)
};
}