Files
openide/java/java-tests/testData/inspection/dataFlow/fixture/ArrayAccessInTry.java
T
Tagir Valeevandintellij-monorepo-bot 6a98eecf0f [java-dfa] Copy state for catch (regression after AIOOBE handling)
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
2024-03-18 15:33:49 +00:00

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);
}
}
}