mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
11 lines
182 B
Java
11 lines
182 B
Java
class Test {
|
|
Runnable r = new Runnable() {
|
|
<error descr="Modifier 'private' not allowed here">private</error> class Foo {}
|
|
@Override
|
|
public void run() {
|
|
|
|
}
|
|
};
|
|
}
|
|
|