1 2 3 4 5 6 7 8 9 10 11
public class narrow_case { private int test(byte b) { switch (b) { case '0' :return 0; } return 99; } }