minix/external/bsd/llvm/dist/clang/test/SemaObjCXX/ivar-struct.mm

9 lines
127 B
Text
Raw Normal View History

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
@interface A {
struct X {
int x, y;
} X;
}
@end