mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
9 lines
198 B
Java
9 lines
198 B
Java
class C {
|
|
String test(int i) {
|
|
switch (i) {
|
|
case 0: return null;
|
|
case 1: <weak_warning descr="Duplicate branch in 'switch'">return (null);</weak_warning>
|
|
}
|
|
return "";
|
|
}
|
|
} |