Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
obj-c++.dg
/
proto-lossage-6.mm
blob: 6a4552eb048070eb038a649fdd2d57e22cab521b [
file
] [
log
] [
blame
]
@class
Base
;
@protocol
_Protocol
;
@interface
ClassA
{
}
-(
void
)
func1
:(
Base
<
_Protocol
>
*)
inTarget
;
@end
int
main
()
{
ClassA
*
theA
=
0
;
Base
<
_Protocol
>*
myBase
=
0
;
[
theA func1
:
myBase
];
return
0
;
}