JavaTXCompilerInJavaTXNoMaven/resources/insertGenerics/javFiles/TestSecondLineOfClassConstraints.jav

12 lines
152 B
Plaintext
Raw Normal View History

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