mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
246 B
Plaintext
15 lines
246 B
Plaintext
public class A {
|
|
|
|
public void test() {
|
|
Object i = new Object() {
|
|
private int a = 0;
|
|
|
|
{
|
|
int j = 5;
|
|
while (j < 10) j++;
|
|
a = 1 * j;
|
|
}
|
|
};
|
|
}
|
|
}
|