summaryrefslogtreecommitdiff
path: root/test/Parser/objcxx-at.mm
blob: 37aee4dd6aa994f3728d4b92714afd4eb6fd69f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -fsyntax-only -verify %s

@interface B {
  int i;
}
@end

struct Z {
  @defs(B); // expected-error{{@defs is not supported in Objective-C++}}
};

struct Y { // expected-note{{to match this '{'}}
  struct X { } // expected-error{{expected ';' after struct}}
    @interface A // expected-error{{unexpected '@' in member specification}}
} // expected-error{{expected '}'}} expected-error{{expected ';' after struct}}