mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
Fixes IDEA-300278 'new' postfix doesn't work well for nested classes GitOrigin-RevId: 3b0b7a2e378dcf386b1813d7ec8af247379d2736
13 lines
175 B
Java
13 lines
175 B
Java
public class ForStaticNestedNew {
|
|
|
|
class Scratch {
|
|
public static void main(String[] args) {
|
|
Foo.Bar.new<caret>
|
|
}
|
|
}
|
|
|
|
class Foo {
|
|
class Bar {
|
|
}
|
|
}
|
|
} |