Gaël GC

Results 1 issues of Gaël GC

When running the following code: ``` function a(): Result { return Result.ok(0); } const x = a(); if (x.isSuccess()) { console.log(x.value); } ``` leads to null being printed. After looking...