mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 11:20:55 +07:00
8 lines
132 B
Java
8 lines
132 B
Java
// "Remove unreachable branches" "true-preview"
|
|
class Test {
|
|
final String s = "abc";
|
|
|
|
int test() {
|
|
return 1;
|
|
}
|
|
} |