Add failing test

This commit is contained in:
Andrew Morris
2023-06-21 10:37:14 +10:00
parent 748769b039
commit ff94f71485

View File

@@ -0,0 +1,15 @@
export default function main() {
let counter = new Counter();
counter!.inc();
return counter.value;
}
class Counter {
value = 0;
inc() {
this.value++;
}
}