bloat-buster/tests/return_mod_scope.nat
2024-07-28 13:56:16 +02:00

11 lines
78 B
Plaintext

fn main() s32
{
>a: s32 = 1;
{
a = 0;
}
return a;
}