mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
168 B
Java
13 lines
168 B
Java
// "Make 'inner' static" "true-preview"
|
|
import java.io.*;
|
|
|
|
class c {
|
|
class inner {
|
|
class ininner {}
|
|
}
|
|
|
|
static {
|
|
<caret>new inner();
|
|
}
|
|
}
|