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
/
execute
/
bycopy-1.m
blob
83f4b270b8fbeaafc60cc55f0473ff93097ebfae
1
/*
2
* Contributed by Nicola Pero <nicola@brainstorm.co.uk>
3
* Fri Feb 2 11:48:01 GMT 2001
4
*/
5
6
#include <objc/objc.h>
7
#include <objc/Protocol.h>
8
9
@protocol MyProtocol
10
- (bycopy id) bycopyMethod;
11
@end
12
13
int main (void)
14
{
15
[nil bycopyMethod];
16
17
exit (0);
18
}
19
20