Files
c3c/test/test_suite/variables/noinit_with_val.c3
Christoffer Lerno e605a21fd3 Revert "Revert 0.7.6 code for 0.7.5 re-release"
This reverts commit d1349c9cfb.
2025-09-05 23:30:35 +02:00

11 lines
136 B
Plaintext

fn int main()
{
test();
return 0;
}
macro test()
{
var x @noinit = 0; // #error: '@noinit' variables may not have initializers
}