blob: 8e7781169acba499b09848aa51c3fe3dc53e0ba6 [file] [log] [blame]
/* Test if compiler detects object as an parameter to a method
or not. It is not valid. */
/* { dg-do compile } */
/* { dg-additional-options "-Wno-objc-root-class" } */
@interface foo
@end
@implementation foo
@end
@interface bar
-(void) my_method:(foo) my_param; /* { dg-error "cannot use an object as parameter to a method" } */
@end
@implementation bar
-(void) my_method:(foo) my_param /* { dg-error "cannot use an object as parameter to a method" } */
{
}
@end