Files
c3c/test/test_suite/symbols/shadow_struct.c3
Christoffer Lerno 8b49e6c14d Rename def to alias.
2025-03-13 11:22:27 +01:00

15 lines
194 B
Plaintext

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