mirror of
https://github.com/autc04/Retro68.git
synced 2025-03-03 17:30:03 +00:00
20 lines
229 B
Java
20 lines
229 B
Java
|
public class pr13107_2
|
||
|
{
|
||
|
public static int foo (boolean b)
|
||
|
{
|
||
|
int i;
|
||
|
try {
|
||
|
if (b) return 1;
|
||
|
i= 2;
|
||
|
}
|
||
|
finally {
|
||
|
if (b) i = 3;
|
||
|
}
|
||
|
return i;
|
||
|
}
|
||
|
|
||
|
public static void main(String[] args)
|
||
|
{
|
||
|
}
|
||
|
}
|