id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
3,proper handling of new,anonymous,somebody,"The following programs are equivalent:

{{{
public class Main {

    void run() {
        System.out.println(""foo"");
    }

    public static void main(String[] args) {
        (new Main()).run();
    }
}
}}}

{{{
public class Main {

    void run() {
        System.out.println(""foo"");
    }

    public static void main(String[] args) {
        new Main().run();
    }
}
}}}

The first is correctly parsed, the second currently fails.",defect,new,major,,component1,,,,
