class Test { void test(boolean condition){ int x = 42; x = 55; if (condition) return; System.out.println(x); } }