2009-04-23 07:20:34 +08:00
|
|
|
// Test this without pch.
|
2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -include %S/objc_property.h -fsyntax-only -verify %s
|
2009-04-23 07:20:34 +08:00
|
|
|
|
|
|
|
// Test with pch.
|
2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -x objective-c -emit-pch -o %t %S/objc_property.h
|
|
|
|
// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
|
2009-04-23 07:20:34 +08:00
|
|
|
|
2012-10-19 20:44:48 +08:00
|
|
|
// expected-no-diagnostics
|
|
|
|
|
2009-04-23 07:20:34 +08:00
|
|
|
void func() {
|
|
|
|
TestProperties *xx = [TestProperties alloc];
|
|
|
|
xx.value = 5;
|
|
|
|
}
|