blob: 86c1c25ae5c90ede446a333528d7b3ffa2725330 [file] [log] [blame]
Steve Naroff83d63c72009-04-24 20:03:17 +00001// Test this without pch.
2// RUN: clang-cc -include %S/objc_import.h -fsyntax-only -verify %s &&
3
4// Test with pch.
5// RUN: clang-cc -x=objective-c -emit-pch -o %t %S/objc_import.h &&
6// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s
7
8#import "objc_import.h"
9
10void func() {
11 TestPCH *xx;
12
13 xx = [TestPCH alloc];
14 [xx instMethod];
15}