mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
moving tests
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
class A {
|
||||
public void test() {
|
||||
Object o = new Inner(1, 2, 3);
|
||||
}
|
||||
|
||||
private class <caret>Inner {
|
||||
private int length;
|
||||
|
||||
public Inner(int... values) {
|
||||
length = values.length;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return Integer.toString(length);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user