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
2016-12-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git]
/
gcc
/
testsuite
/
obj-c++.dg
/
proto-lossage-6.mm
blob
6a4552eb048070eb038a649fdd2d57e22cab521b
1
@class Base;
2
@protocol _Protocol;
3
4
@interface ClassA {
5
}
6
-(void) func1:(Base<_Protocol> *)inTarget;
7
@end
8
9
int main()
10
{
11
ClassA* theA = 0;
12
Base<_Protocol>* myBase = 0;
13
[theA func1:myBase];
14
15
return 0;
16
}
17