blob: 305629b43ce676683614f04d1bcc2e1ba03743a1 [file] [log] [blame]
Daniel Dunbarca74ae72009-11-17 09:04:12 +00001// RUN: clang-cc -fsyntax-only -fobjc-nonfragile-abi -verify %s
Fariborz Jahanianaf3e7222009-03-31 00:06:29 +00002@interface I
3{
4}
5@property int IP;
6@end
7
8@implementation I
9@synthesize IP;
10- (int) Meth {
11 return IP;
12}
13@end