2009-04-20 23:06:07 +08:00
|
|
|
// Test this without pch.
|
2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -include %S/objc_methods.h -fsyntax-only -verify %s
|
2009-04-20 23:06:07 +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_methods.h
|
|
|
|
// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
|
2009-04-20 23:06:07 +08:00
|
|
|
|
|
|
|
void func() {
|
2009-04-23 23:15:40 +08:00
|
|
|
TestPCH *xx;
|
2009-04-24 00:00:56 +08:00
|
|
|
TestForwardClassDecl *yy;
|
|
|
|
// FIXME:
|
|
|
|
// AliasForTestPCH *zz;
|
|
|
|
|
2009-04-23 23:15:40 +08:00
|
|
|
xx = [TestPCH alloc];
|
2009-04-20 23:06:07 +08:00
|
|
|
[xx instMethod];
|
|
|
|
}
|