2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-10 09:40:42 +08:00

* 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
libjava/testsuite

@ -1,3 +1,7 @@
2002-08-26 Tom Tromey <tromey@redhat.com>
* libjava.compile/narrow_case.java: New file.
2002-08-25 Adam Megacz <adam@xwt.org>
* lib/libjava.exp: don't apply -no-install when platform is mingw.

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