blob: 724c8221848b4282501484ac07865a1f3dc24814 [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}
Argyrios Kyrtzidise7e8fca2013-06-18 21:26:33 +000018
19// rdar://14112291
20@class NewID1;
21void foo1(NewID1 *p);
22void bar1(OldID1 *p) {
23 foo1(p);
24}
25@class NewID2;
26void foo2(NewID2 *p) {
27 [p meth];
28}
29void bar2(OldID2 *p) {
30 foo2(p);
31 [p meth];
32}