* 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
@@ -0,0 +1,13 @@
public class pr8955
{
static final int val = Integer.MIN_VALUE;
void foo()
{
switch(1) {
case val:
break;
case 1:
break;
}
}
}