Files
Tagir Valeevandintellij-monorepo-bot 3ba76e26e3 [java] .new postfix template: support qualified references
Fixes IDEA-300278 'new' postfix doesn't work well for nested classes

GitOrigin-RevId: 3b0b7a2e378dcf386b1813d7ec8af247379d2736
2022-08-19 19:03:36 +00:00

13 lines
171 B
Java

public class ForStaticNestedNew {
class Scratch {
public static void main(String[] args) {
Bar.new<caret>
}
}
class Foo {
class Bar {
}
}
}