mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-11 13:57:36 +08:00
14 lines
163 B
Java
14 lines
163 B
Java
|
public class pr8955
|
||
|
{
|
||
|
static final int val = Integer.MIN_VALUE;
|
||
|
void foo()
|
||
|
{
|
||
|
switch(1) {
|
||
|
case val:
|
||
|
break;
|
||
|
case 1:
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|