Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm -triple=i686-apple-darwin8 -o %t %s |
Fariborz Jahanian | 2e050f1 | 2009-03-12 22:34:11 +0000 | [diff] [blame] | 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 |