Sign in
gnu
/
gcc
/
refs/heads/releases/gcc-4.8
/
.
/
gcc
/
testsuite
/
objc.dg
/
proto-lossage-6.m
blob: 2b8720c367062506832bc9ef7e590ca7b98816e5 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
@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
;
}