blob: c9cbe1b36041e6802c472c11c9ccfb8d639cce75 [file] [log] [blame]
//file
class Test {
public static int getInt(int i) {
switch (i) {
case 0:
return 0;
case 1:
return 1;
case 2:
return 2;
case 3:
return 3;
default:
return -1;
}
}
}