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

11 lines
147 B
Plaintext

module test;
alias abc = ggg;
tlocal int ggg = 123;
int[2] x = { abc, 1 }; // #error: expression must be a constant
fn int main()
{
return 0;
}