public class Parameter { public void test() { int startX = 0; method(startX); } private void method(int y) { } }