Daily bump.
[official-gcc.git] / gcc / testsuite / objc.dg / bad-receiver-type-2.m
blob6a4dff163a8be9925c0042171388ee51a27198b4
1 /* { dg-do compile } */
2 /* Contributed by Alexander Malmberg: PR18456 */
4 @interface Foo
5 -(void) foo;
6 @end
8 void *ip;
10 void (*func1)(void);
12 struct
14     int a:2;
15 } struct1,struct2[2];
17 union
19     int a:2;
20 } union1,union2[2];
22 Foo **f;
24 int main(int argc,char **argv)
26   [(struct {int a;} *)ip foo];  /* { dg-warning "invalid receiver type" } */
27   [func1 foo];                  /* { dg-warning "invalid receiver type" } */
28   [struct1.a foo];              /* { dg-warning "invalid receiver type" } */
29                                 /* { dg-warning "cast to pointer from integer" "" { target *-*-* } .-1 } */ 
30   [union1.a foo];               /* { dg-warning "invalid receiver type" } */
31                                 /* { dg-warning "cast to pointer from integer" "" { target *-*-* } .-1 } */ 
32   [struct1 foo];                /* { dg-warning "invalid receiver type" } */
33                                 /* { dg-error "cannot convert" "" { target *-*-* } .-1 } */ 
34   [union1 foo];                 /* { dg-warning "invalid receiver type" } */
35                                 /* { dg-error "cannot convert" "" { target *-*-* } .-1 } */ 
36   [struct2 foo];                /* { dg-warning "invalid receiver type" } */
37                                 /* { dg-error "cannot convert" "" { target *-*-* } .-1 } */ 
38   [union2 foo];                 /* { dg-warning "invalid receiver type" } */
39                                 /* { dg-error "cannot convert" "" { target *-*-* } .-1 } */ 
40   [f foo];                      /* { dg-warning "invalid receiver type" } */