Douglas Gregor | 70e5a14 | 2009-04-22 23:20:34 +0000 | [diff] [blame^] | 1 | // Test this without pch. |
2 | // FIXME: clang-cc -include %S/objc_property.h -fsyntax-only -verify %s && | ||||
3 | |||||
4 | // Test with pch. | ||||
5 | // FIXME: clang-cc -x=objective-c -emit-pch -o %t %S/objc_property.h && | ||||
6 | // FIXME: clang-cc -include-pch %t -fsyntax-only -verify %s | ||||
7 | |||||
8 | void func() { | ||||
9 | TestProperties *xx = [TestProperties alloc]; | ||||
10 | xx.value = 5; | ||||
11 | } |