Files
Alexey Kudravtsev 70290391f9 moved to community
2015-11-16 13:31:16 +03:00

14 lines
208 B
Java

class C3 {
@SuppressWarnings({"UnusedDeclaration"})
private int xxxx;
public C3(int xxxx) {
this.xxxx = xxxx;
}
void f(int i) {
int x = <caret>0;
f(x+i);
}
}