* libjava.compile/narrow_case.java: New file.

From-SVN: r56604
This commit is contained in:
Tom Tromey 2002-08-27 16:07:02 +00:00 committed by Tom Tromey
parent 7acc97e02e
commit 8632ed40b6
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
public class narrow_case
{
private int test(byte b)
{
switch (b)
{
case '0' :return 0;
}
return 99;
}
}