blob: 83bde783a3c01f5270581266b2778e7ba44b098b [file] [log] [blame]
Douglas Gregor70e5a142009-04-22 23:20:34 +00001// 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
8void func() {
9 TestProperties *xx = [TestProperties alloc];
10 xx.value = 5;
11}