blob: 4a2c858af6c82eaf224a616f4f44239395fc3b1f [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// This invalid code was causing a stack overflow, check that we issue
// reasonable diagnostics and not crash.
struct GH140887 { // expected-note {{definition of 'struct GH140887' is not complete until the closing '}'}}
struct GH140887 s; // expected-error {{field has incomplete type 'struct GH140887'}}
};
void gh140887() {
struct GH140887 s;
}