gcc/libjava/testsuite/libjava.compile/assignment.java

20 lines
251 B
Java
Raw Normal View History

2000-02-13 00:09:34 +01:00
// 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;
}
}