aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc.dg/naming-1.m
blob: 3528961bf6d591bfcdbcd2d5885e110a3a43d7cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Test for obscuring of @interfaces with local vars.  */
/* Author: Ziemowit Laski <zlaski@apple.com>.  */
/* { dg-do compile } */

@interface View
@end

void foo(void)
{
        int View;	/* ok */
        View = 1;	/* ok */
	View *view;	/* { dg-error "undeclared|only once|it appears" } */
}

void bar(void)
{
	View *view;	/* ok */
	View = 1;	/* { dg-error "parse error|syntax error|expected" } */
}