* libjava.compile/pr8955.java: New test, for PR java/8955.

From-SVN: r60764
This commit is contained in:
Tom Tromey 2003-01-02 00:05:14 +00:00 committed by Tom Tromey
parent faa75e896f
commit 3c32ae1c35
2 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2003-01-01 Tom Tromey <tromey@redhat.com>
* libjava.compile/pr8955.java: New test, for PR java/8955.
2002-12-19 Tom Tromey <tromey@redhat.com>
* libjava.jacks/jacks.xfail: Updated.

View File

@ -0,0 +1,13 @@
public class pr8955
{
static final int val = Integer.MIN_VALUE;
void foo()
{
switch(1) {
case val:
break;
case 1:
break;
}
}
}