mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
14 lines
208 B
Java
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);
|
|
}
|
|
}
|