blob: 901cc31e47ae09c8b4a9561dd50f016aeb9884ab [file] [log] [blame]
Fariborz Jahanianf2d74cc2011-03-27 19:53:47 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2// rdar://9181463
3
4typedef struct objc_class *Class;
5
6typedef struct objc_object {
7 Class isa;
8} *id;
9
10@interface NSObject
11+ (id) alloc;
12@end
13
14
15void foo(Class self) {
16 [self alloc];
17}
18
19void bar(Class self) {
20 Class y = self;
21 [y alloc];
22}
23