aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc.dg/class-1.m
blob: 64304f590ec47bff8606e83394d4065a4e511905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Redeclarations of class names.  */
/* { dg-do compile } */

typedef int foo;

@class foo;  /* { dg-error "redeclared as different kind of symbol" } */
/* { dg-error "previous declaration of" "" { target *-*-* } 4 } */

typedef int bar;

@interface bar
@end  /* { dg-error "redeclared as different kind of symbol" } */
/* { dg-error "previous declaration of" "" { target *-*-* } 9 } */

int glob;

@implementation glob
@end  /* { dg-error "redeclared as different kind of symbol" } */
/* { dg-error "previous declaration of" "" { target *-*-* } 15 } */
/* { dg-warning "annot find interface declaration" "" { target *-*-* } 18 } */