mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
21 lines
341 B
Plaintext
21 lines
341 B
Plaintext
class Test {
|
|
|
|
abstract class U {
|
|
{
|
|
final int[] args = new int[8];
|
|
Runnable a = new Runnable() {
|
|
{
|
|
for (int arg : args) {
|
|
System.out.println(arg);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void run() {
|
|
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
} |