aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc.dg/naming-2.m
blob: 6d087509ea2e8eaeb31eb37b26d9919c3abc2de9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Test for collision of @interfaces with global vars.  */
/* Author: Ziemowit Laski <zlaski@apple.com>.  */
/* { dg-do compile } */

@interface Foo
@end
float Foo;  /* { dg-error "parse error|syntax error|expected|redeclaration" } */

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