blob: c7dd805b3e470ff652ba6ced056ba58b6fae96e4 [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
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00008// expected-no-diagnostics
9
Steve Naroff83d63c72009-04-24 20:03:17 +000010#import "objc_import.h"
11
12void func() {
13 TestPCH *xx;
14
15 xx = [TestPCH alloc];
16 [xx instMethod];
17}