2015-09-24 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / objc / compile / 20011211-1.m
blobb6920019c423abfb24b4c179d93372e1a2fd5920
1 typedef struct objc_class *Class;
3 typedef struct objc_object {
4   Class isa;
5 } *id;
7 @interface nsset
8 + (id)set;
9 @end
11 @interface baz
12 - (void)set;
13 @end
15 nsset *fn ()
17   nsset *bar;
18   bar = [nsset set];