Files
c3c/test/test_suite/symbols/shadow_struct.c3
2021-05-23 13:16:48 +02:00

15 lines
196 B
Plaintext

struct Foo
{
Foo *x;
int y;
}
define Foo = float; // #error: shadow a previous declaration
enum Bar
{
TEST1,
TEST2
}
define Bar = float; // #error: shadow a previous declaration