mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
13 lines
219 B
Java
13 lines
219 B
Java
// "Create constructor" "true-preview"
|
|
class Test {
|
|
|
|
public void t() {
|
|
new Inner("a"){};
|
|
}
|
|
|
|
class Inner {
|
|
public Inner(String a) {
|
|
<caret><selection></selection>
|
|
}
|
|
}
|
|
} |