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

8 lines
251 B
Plaintext

alias Foo = int;
alias hello1 = int; // #error: To alias a type, the alias
alias hello2 = Foo; // #error: To alias a type, the alias
alias HELLO1 = int; // #error: To alias a type, the alias
alias HELLO2 = Foo; // #error: To alias a type, the alias