langtools/test/tools/javac/T6214885.java
author jjg
Mon, 11 Jan 2010 14:05:21 -0800
changeset 4699 e58edf3542b3
parent 10 06bc494ca11e
child 6150 d055fa8ced62
permissions -rw-r--r--
6326754: Compiler will fail to handle -Xmaxerrs with -ve numbers Reviewed-by: ksrini

/*
 * @test  /nodynamiccopyright/
 * @bug 6214885
 * @summary This test exercises features provided by the new internal Diagnostics API
 * @compile/fail/ref=T6214885a.out -XDstdout -XDdiags=%b:%l%_%t%m|%p%m T6214885.java
 * @compile/fail/ref=T6214885b.out -XDstdout -XDdiags=%b:%l:%c%_%t%m|%p%m T6214885.java
 */
class T6214885
{
    public void m() {
        x = 1;
    }
}