We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Reproduction link.
export function bug(): i32 { const x = 1u8; return x; }
The compiler hangs when using a postfixed literal (does ASC even have these?), but only if it's in a position other than the return value.
I.e., this compiles fine:
export function probably_still_a_bug(): i32 { return 1u8; }