blob: 43f74fb07b43cc283a8d11a7028f0bfef64b8129 [file] [log] [blame]
Fariborz Jahanian8604fae2009-12-14 17:13:18 +00001// RUN: clang -cc1 -emit-llvm -triple=i686-apple-darwin8 -o %t %s
Fariborz Jahanian2e050f12009-03-12 22:34:11 +00002// RUN: grep -e "SiSetOtherThings:" %t
3
4@interface A
5@property(setter=iSetOtherThings:) int otherThings;
6@end
7
8@implementation A
9@dynamic otherThings;
10@end