langtools/test/tools/javac/T5048776.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 5048776
 * @compile/ref=T5048776a.out -XDstdout -XDrawDiagnostics                  T5048776.java
 * @compile/ref=T5048776b.out -XDstdout -XDrawDiagnostics -Xlint:all,-path T5048776.java
 */
class A1 {
    void foo(Object[] args) { }
}

class A1a extends A1 {
    void foo(Object... args) { }
}

class A2 {
    void foo(Object... args) { }
}

class A2a extends A2 {
    void foo(Object[] args) { }
}