mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +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
10 lines
146 B
Java
10 lines
146 B
Java
public class LocalClass {
|
|
public LocalClass(LocalClass o) {
|
|
}
|
|
|
|
void test() {
|
|
new <caret>LocalClass(this) {
|
|
};
|
|
}
|
|
}
|