Files
c3c/test/test_suite/symbols/shadow_struct.c3
Christoffer Lerno 3e54d13b62 Prefer def
2023-06-02 20:08:45 +02:00

15 lines
190 B
C

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