blob: a1d3eb99ceb528a28d38a166c83c7ccc14dc65bb [file] [log] [blame]
Douglas Gregor70e5a142009-04-22 23:20:34 +00001// Test this without pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: clang-cc -include %S/objc_property.h -fsyntax-only -verify %s
Douglas Gregor70e5a142009-04-22 23:20:34 +00003
4// Test with pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00005// RUN: clang-cc -x=objective-c -emit-pch -o %t %S/objc_property.h
Douglas Gregor319ac892009-04-23 22:29:11 +00006// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s
Douglas Gregor70e5a142009-04-22 23:20:34 +00007
8void func() {
9 TestProperties *xx = [TestProperties alloc];
10 xx.value = 5;
11}