blob: 277c6dd6c2f0a91ed2e90720f1405b63a4b13643 [file] [log] [blame]
Steve Naroff83d63c72009-04-24 20:03:17 +00001// Test this without pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00002// RUN: %clang_cc1 -include %S/objc_import.h -fsyntax-only -verify %s
Steve Naroff83d63c72009-04-24 20:03:17 +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_import.h
6// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
Steve Naroff83d63c72009-04-24 20:03:17 +00007
8#import "objc_import.h"
9
10void func() {
11 TestPCH *xx;
12
13 xx = [TestPCH alloc];
14 [xx instMethod];
15}