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