Java: Highlight unreachable assignment of array element (IDEA-199556)

This commit is contained in:
Pavel Dolgov
2018-10-26 13:11:13 +03:00
parent 4c44e36881
commit e6e432446a
3 changed files with 13 additions and 0 deletions
@@ -0,0 +1,7 @@
class C {
void foo(String arg) throws Exception {
Object[] objects;
throw new Exception("");
<error descr="Unreachable statement">objects[0] = arg;</error>
}
}