allwinner_a64/android/external/clang/test/SemaObjCXX/ivar-struct.mm
2018-08-08 16:14:42 +08:00

8 lines
127 B
XML

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