xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/property-setter-attr.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 -emit-llvm -triple=i686-apple-darwin8 -o %t %s
2// 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
11