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