repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
objc
/
compile
/
20011211-1.m
blob
b6920019c423abfb24b4c179d93372e1a2fd5920
1
typedef struct objc_class *Class;
2
3
typedef struct objc_object {
4
Class isa;
5
} *id;
6
7
@interface nsset
8
+ (id)set;
9
@end
10
11
@interface baz
12
- (void)set;
13
@end
14
15
nsset *fn ()
16
{
17
nsset *bar;
18
bar = [nsset set];
19
}