mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 07:06:48 +08:00
12 lines
136 B
Java
12 lines
136 B
Java
|
public class narrow_case
|
||
|
{
|
||
|
private int test(byte b)
|
||
|
{
|
||
|
switch (b)
|
||
|
{
|
||
|
case '0' :return 0;
|
||
|
}
|
||
|
return 99;
|
||
|
}
|
||
|
}
|