Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / testsuite / libjava.compile / assignment.java
blobec05f73a5033ea84ddfabe8df36383b8864153c1
1 // A definite assignment test.
3 public class assignment
5 public static Byte foo ()
7 Byte b;
9 while (true) {
10 try {
11 b = Byte.decode ("42");
12 break;
13 } catch (NumberFormatException ignored) {}
16 return b;