blob: b51cd90927ae541b2d086f90ddbdd89f102be783 [file] [log] [blame]
Douglas Gregor70e5a142009-04-22 23:20:34 +00001// Test this without pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00002// RUN: %clang_cc1 -include %S/objc_property.h -fsyntax-only -verify %s
Douglas Gregor70e5a142009-04-22 23:20:34 +00003
4// Test with pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00005// RUN: %clang_cc1 -x objective-c -emit-pch -o %t %S/objc_property.h
6// RUN: %clang_cc1 -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}