moved to community

This commit is contained in:
Alexey Kudravtsev
2015-11-16 13:31:16 +03:00
parent 17de17c766
commit 70290391f9
23 changed files with 31185 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
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);
}
}