xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/property-setter-attr.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -emit-llvm -triple=i686-apple-darwin8 -o %t %s
2*f4a2713aSLionel Sambuc// RUN: grep -e "SiSetOtherThings:" %t
3*f4a2713aSLionel Sambuc
4*f4a2713aSLionel Sambuc@interface A
5*f4a2713aSLionel Sambuc@property(setter=iSetOtherThings:) int otherThings;
6*f4a2713aSLionel Sambuc@end
7*f4a2713aSLionel Sambuc
8*f4a2713aSLionel Sambuc@implementation A
9*f4a2713aSLionel Sambuc@dynamic otherThings;
10*f4a2713aSLionel Sambuc@end
11