// "Move up into 'if' statement branches" "true-preview" class X { void test(int x) { if (x > 0) { System.out.println(x); } else { System.out.println(x); } } }