public class Test { void test(boolean condition) { String s = "42"; if (condition) s = "new"; System.out.println(s); } }