mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
14 lines
219 B
Java
14 lines
219 B
Java
class C {
|
|
int f() {
|
|
int i;
|
|
try {
|
|
} finally {
|
|
<warning descr="The value 1 assigned to 'i' is never used">i</warning> = 1;
|
|
try {
|
|
i = 2;
|
|
} finally {
|
|
}
|
|
}
|
|
return i;
|
|
}
|
|
} |