summaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc.dg/param-1.m
blob: 9dbf6e3fcd94935de805a6f753fac205b0fffe32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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 "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