1*67e74705SXin Li// RUN: %clang_cc1 -emit-llvm -triple=i686-apple-darwin8 -o %t %s 2*67e74705SXin Li// RUN: grep -e "SiSetOtherThings:" %t 3*67e74705SXin Li 4*67e74705SXin Li@interface A 5*67e74705SXin Li@property(setter=iSetOtherThings:) int otherThings; 6*67e74705SXin Li@end 7*67e74705SXin Li 8*67e74705SXin Li@implementation A 9*67e74705SXin Li@dynamic otherThings; 10*67e74705SXin Li@end 11