blob: 83f389c4ca90c79628ac218e9cdbbcdf61a81200 [file] [log] [blame]
Steve Naroff83d63c72009-04-24 20:03:17 +00001// Test this without pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: clang-cc -include %S/objc_import.h -fsyntax-only -verify %s
Steve Naroff83d63c72009-04-24 20:03:17 +00003
4// Test with pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00005// RUN: clang-cc -x=objective-c -emit-pch -o %t %S/objc_import.h
Steve Naroff83d63c72009-04-24 20:03:17 +00006// 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}