aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc.dg/class-1.m
blob: a7760e104849c37af225fbe2d7e8ba2785d31584 (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 "Cannot find interface declaration" "" { target *-*-* } 18 } */