15 lines
199 B
Plaintext
Raw Permalink Normal View History

2024-05-02 23:04:07 +02: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;
}
}