blob: e796a3b510772277cdd80b8d36a8169e76d1c643 [file] [log] [blame]
/* 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