13 lines
167 B
Plaintext
Raw Permalink Normal View History

2023-01-10 14:22:05 +01:00
class TestAny {
a;
b = a;
anyMethod() {
var f;
return f;
}
otherMethod(e) {
b = e;
e = a;
return e;
}
}