mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 07:11:30 +07:00
#IDEA-372592 fixed closes https://github.com/JetBrains/intellij-community/pull/3048 Merge-request: IJ-MR-162908 Merged-by: Bartek Pacia <bartek.pacia@jetbrains.com> GitOrigin-RevId: 0ad34047e08bde4a4689e992768832863036fca0
13 lines
183 B
Java
13 lines
183 B
Java
public class Test {
|
|
public Test(Test test) {
|
|
}
|
|
|
|
private class Inner {
|
|
public void x() {
|
|
new <caret>Test(Test.this) {
|
|
|
|
};
|
|
}
|
|
}
|
|
}
|