URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [objc.dg/] [param-1.m] - Rev 20
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test if compiler detects object as an parameter to a method or not. It is not valid. */ /* { dg-do compile } */ @interface foo @end @implementation foo @end @interface bar -(void) my_method:(foo) my_param; /* { dg-error "can not use an object as parameter to a method" } */ @end @implementation bar -(void) my_method:(foo) my_param /* { dg-error "can not use an object as parameter to a method" } */ { } @end
Go to most recent revision | Compare with Previous | Blame | View Log