mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 11:29:28 +07:00
Fixes IDEA-349343 Exceptions during DFA Dataflow interpretation error (wasForciblyMerged = false), throwable=java.lang.IllegalStateException: Stack for instruction 72 increased by 13; it's likely that IR was built incorrectly GitOrigin-RevId: 2ebeeb9b58d6daa94ff885d20c606cae6e5391bb
11 lines
211 B
Java
11 lines
211 B
Java
class Scratch {
|
|
public static void main(String[] files) {
|
|
try {
|
|
System.out.println(files[0]);
|
|
files[1] = "hello";
|
|
}
|
|
catch (RuntimeException e) {
|
|
System.out.println(e);
|
|
}
|
|
}
|
|
} |