llvm-project/clang/test/Parser/objcxx-at.mm
Douglas Gregor 23c8476748 Parse an '@' in an Objective-C++ class member specification,
diagnosing it as an error rather than looping infinitely. Also,
explicitly disallow @defs in Objective-C++. Fixes <rdar://problem/9260136>.

llvm-svn: 129521
2011-04-14 17:21:19 +00:00

16 lines
433 B
Plaintext

// 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}}