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.
Slightly related to #482
export function main(): i32 { let res = 0; let arr:i32[];// initialized with garbage for(let i=0;i<10;i++) { arr.push(i); } return res; }
This code throws exception on third iteration