mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
moving tests
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
public class A {
|
||||
public class <caret>Inner {
|
||||
private int a = 0;
|
||||
|
||||
public Inner(int arg) {
|
||||
int j = 5;
|
||||
while (j < 10) j++;
|
||||
a = arg * j;
|
||||
}
|
||||
}
|
||||
|
||||
public void test() {
|
||||
Inner i = new Inner(1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user