1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-06-19 18:01:31 +00:00
Files
assemblyscript/tests/compiler/void.ts

13 lines
154 B
TypeScript
Raw Normal View History

void 1;
function anInt(): i32 {
return 2;
}
void anInt();
var u8Val1: u8 = 1;
var u8Val2: u8 = 255;
void (u8Val1 + u8Val2); // can remain unwrapped