JavaTXCompilerInJavaTXNoMaven/resources/insertGenerics/javFiles/TestAny.jav

13 lines
167 B
Plaintext
Raw Normal View History

2024-05-02 21:04:07 +00:00
class TestAny {
a;
b = a;
anyMethod() {
var f;
return f;
}
otherMethod(e) {
b = e;
e = a;
return e;
}
}