blob: ec05f73a5033ea84ddfabe8df36383b8864153c1 [file] [log] [blame]
// A definite assignment test.
public class assignment
{
public static Byte foo ()
{
Byte b;
while (true) {
try {
b = Byte.decode ("42");
break;
} catch (NumberFormatException ignored) {}
}
return b;
}
}