/* * @test /nodynamiccopyright/ * @bug 6910550 * * @summary javac 1.5.0_17 fails with incorrect error message * @compile/fail/ref=T6910550e.out -XDrawDiagnostics T6910550e.java * */ class T6910550e { static class Pair {} void m(Pair x) {} void m(Pair y) {} { m(new Pair()); m(new Pair()); } }