mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
13 lines
211 B
Java
13 lines
211 B
Java
// "Create Constructor" "true"
|
|
class Test {
|
|
|
|
public void t() {
|
|
new Inner("a"){};
|
|
}
|
|
|
|
class Inner {
|
|
public Inner(String a) {
|
|
<caret><selection></selection>
|
|
}
|
|
}
|
|
} |