mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-23 20:50:01 +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;
|
|
}
|
|
}
|