blob: dd48ba4796da0a54637ffd2ff24a25898bf95a0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// RUN: clang -fsyntax-only -verify %s
@interface Foo // expected-error {{previous definition is here}}
@end
float Foo; // expected-error {{redefinition of 'Foo' as different kind of symbol}}
@class Bar; // expected-error {{previous definition is here}}
typedef int Bar; // expected-error {{redefinition of 'Bar' as different kind of symbol}}
@implementation FooBar // expected-warning {{cannot find interface declaration for 'FooBar'}}
@end
typedef int OBJECT; // expected-error {{previous definition is here}}
@class OBJECT ; // expected-error {{redefinition of 'OBJECT' as different kind of symbol}}
typedef int Gorf; // expected-error {{previous definition is here}}
@interface Gorf @end // expected-error {{redefinition of 'Gorf' as different kind of symbol}} \
// expected-error {{previous definition is here}}
void Gorf() // expected-error {{redefinition of 'Gorf' as different kind of symbol}}
{
int Bar, Foo, FooBar;
}
|