blob: 3748e90b79152d3bdbcc374263c156da555a6bae [file] [log] [blame]
public class A {
void test(int <caret>i) {
int j = i;
}
void callTest() {
test(0);
}
}