mirror of
https://forge.sourceware.org/marek/gcc.git
synced 2026-02-22 20:01:31 -05: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;
|
|
}
|
|
}
|
|
}
|