1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-05-03 02:42:15 +00:00
assemblyscript/tests/compiler/new-without-allocator.ts

7 lines
75 B
TypeScript

class A {}
export function test(): i32 {
var a = new A();
return 3;
}