__color__,ticket,summary,component,version,milestone,type,owner,status,created,_changetime,_description,_reporter
3,1,parsing of hexadecimal number fails,component1,,,defect,somebody,new,2010-11-12T10:51:02Z+0000,2010-11-12T10:51:02Z+0000,"The problem is reproducible with:
{{{
$ runhaskell parse.hs < Main.java
}}}

{{{parse.hs}}} and {{{Main.java}}} are attached.",anonymous
3,2,parsing of hexadecimal number fails,component1,,,defect,somebody,new,2010-11-12T10:51:49Z+0000,2010-11-12T10:53:51Z+0000,"The problem is reproducible with:
{{{
$ runhaskell parse.hs < Main.java
}}}

{{{parse.hs}}} and {{{Main.java}}} are attached.",anonymous
3,3,proper handling of new,component1,,,defect,somebody,new,2010-11-12T11:22:23Z+0000,2010-11-12T11:22:23Z+0000,"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.",anonymous
