blob: ce9df2fbb45d382acc393cb8a9cec93c372aa5ad [file] [log] [blame]
class Test {
void foo(byte i) {
int[] a = new int[i];
System.out.println(a[i]);
}
}