aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/narrow_case.java
blob: 48b56820256eb784bf725644792f7dac27efbc27 (plain)
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;
  }
}