aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjCXX/ivar-struct.mm
blob: c8c9ca9cbbf04f9ba4db960f540359fee7c2118e (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
@interface A {
  struct X {
    int x, y;
  } X;
}
@end