llvm-project/clang/test/Parser/objc-property-syntax.m
Douglas Gregor 78edf99f46 Use Parser::ExpectAndConsume() uniformly to eat semicolons after
Objective-C declarations and statements. Fixes
<rdar://problem/8814576> (wrong source line for diagnostics about
missing ';'), and now we actually consume the ';' at the end of a
@compatibility_alias directive!

llvm-svn: 122855
2011-01-05 01:10:06 +00:00

18 lines
693 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
@interface MyClass {
int prop;
};
@property unsigned char bufferedUTF8Bytes[4]; // expected-error {{property cannot have array or function type}}
@property unsigned char bufferedUTFBytes:1; // expected-error {{property name cannot be a bitfield}}
@property(nonatomic, retain, setter=ab_setDefaultToolbarItems) MyClass *ab_defaultToolbarItems; // expected-error {{method name referenced in property setter attribute must end with ':'}}
@property int prop;
@end
@implementation MyClass
@dynamic ab_defaultToolbarItems // expected-error{{expected ';' after @dynamic}}
@synthesize prop // expected-error{{expected ';' after @synthesize}}
@end