// "Merge nested 'if' statements" "true-preview" class Test { public static void main(String[] args) { if(args.length > 0/*comment1*/) // comment3 if(args[/*comment2*/0].equals("foo")) { System.out.println("oops"); } } }