repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merged r157653 through r157895 into branch.
[official-gcc.git]
/
gcc
/
testsuite
/
objc
/
execute
/
bycopy-1.m
blob
c719d27d18beb56a19f19d24b2b23e9672021f72
1
/*
2
* Contributed by Nicola Pero <nicola@brainstorm.co.uk>
3
* Fri Feb 2 11:48:01 GMT 2001
4
*/
5
6
#include "../../objc-obj-c++-shared/Protocol1.h"
7
8
@protocol MyProtocol
9
- (bycopy id) bycopyMethod;
10
@end
11
12
int main (void)
13
{
14
[nil bycopyMethod];
15
16
exit (0);
17
}
18
19