mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
fix IDEA-368266 Merge-request: IJ-MR-156690 Merged-by: Bartek Pacia <bartek.pacia@jetbrains.com> GitOrigin-RevId: 68b837ddad0bc7e614ee51fa1934e86b13df69b4
10 lines
168 B
Java
10 lines
168 B
Java
class X {
|
|
public static void main(String[] args) {
|
|
var a = switch (new Object()){
|
|
case Object object -> """
|
|
hello{<caret>
|
|
""";
|
|
};
|
|
}
|
|
}
|