mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: 3a473c492e709a280d8a06e7364a2af05babf37f
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>
|
|
}
|
|
}
|
|
} |