[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / property-setter-attr.m
blobd155ca811af9ec3c17d766df806ec33f04d7414b
1 // RUN: %clang_cc1 -emit-llvm -triple=i686-apple-darwin8 -o %t %s
2 // RUN: grep -e "SiSetOtherThings:" %t
4 @interface A 
5 @property(setter=iSetOtherThings:) int otherThings;
6 @end
8 @implementation A
9 @dynamic otherThings;
10 @end