JavaTXCompilerInJavaTX/app/resources/insertGenericsJav/TestThreeArgs.jav

15 lines
199 B
Plaintext
Raw Normal View History

2023-01-10 13:22:05 +00:00
public class TestThreeArgs {
a;
id(b) {
var a /* = null */;
var c = b;
m(a,a,b);
return c;
}
m(x,y, z) {
x = id(y);
return x;
}
}