2009-04-25 04:03:17 +08:00
|
|
|
// Test this without pch.
|
2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -include %S/objc_import.h -fsyntax-only -verify %s
|
2009-04-25 04:03:17 +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_import.h
|
|
|
|
// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
|
2009-04-25 04:03:17 +08:00
|
|
|
|
|
|
|
#import "objc_import.h"
|
|
|
|
|
|
|
|
void func() {
|
|
|
|
TestPCH *xx;
|
|
|
|
|
|
|
|
xx = [TestPCH alloc];
|
|
|
|
[xx instMethod];
|
|
|
|
}
|