mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitHub PR: https://github.com/JetBrains/intellij-community/pull/3052 #IDEA-372959 fixed Merge-request: IJ-MR-164104 Merged-by: Bartek Pacia <bartek.pacia@jetbrains.com> Co-authored-by: Bartek Pacia <bartek.pacia@jetbrains.com> GitOrigin-RevId: 6de9007dc34a8f09d6880f5c27a6db3db7094016
21 lines
394 B
Java
21 lines
394 B
Java
public class Test {
|
|
void test() {
|
|
String hello = "Hello World";
|
|
class <caret>Inner {
|
|
public Inner() {
|
|
this(null);
|
|
}
|
|
|
|
public Inner(Object x) {
|
|
}
|
|
|
|
void print() {
|
|
System.out.println(hello);
|
|
}
|
|
}
|
|
|
|
new Inner().print();
|
|
new Inner(null).print();
|
|
}
|
|
}
|