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