mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
do not skip control flow for unreachable code (IDEA-87654)
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
class Test {
|
||||
|
||||
public void test(boolean b) {
|
||||
int a = 1;
|
||||
if (true) {
|
||||
System.out.println(a);
|
||||
} else {
|
||||
<selection>System.out.println(a);</selection>
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user