mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: 4bcbf2d43bddca5ded941c2b1497715ff977ca0b
8 lines
162 B
Java
8 lines
162 B
Java
class Test {
|
|
Test() {
|
|
if (true) {
|
|
throw new AssertionError();
|
|
}
|
|
<warning descr="Unreachable code">System.out.println("Hello");</warning>
|
|
}
|
|
} |