mirror of
https://github.com/openRuyi-Project/gcc.git
synced 2026-06-16 08:25:51 +00:00
3c32ae1c35
From-SVN: r60764
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;
|
|
}
|
|
}
|
|
}
|