blob: 32cac5ef5bf986a44eaadf97c3025aeeee59cd60 [file] [log] [blame]
public class Parameter {
public void test() {
int startX = 0;
method(startX);
}
private void method(int y) {
}
}