843N/A/*
843N/A * @test /nodynamiccopyright/
843N/A * @bug 6910550
843N/A *
843N/A * @summary javac 1.5.0_17 fails with incorrect error message
843N/A * @compile/fail/ref=T6910550c.out -XDrawDiagnostics T6910550c.java
843N/A *
843N/A */
843N/A
843N/Aclass T6910550c {
843N/A void m(Object[] x) {}
843N/A void m(Object... x) {}
843N/A
843N/A { m(); }
843N/A { m(null); }
843N/A { m(null, null); }
843N/A { m(null, null, null); }
843N/A}