0N/A/*
0N/A * @test /nodynamiccopyright/
0N/A * @bug 6330920
0N/A * @summary Verify that javac doesn't duplicate method error on method with error
0N/A * @author Peter von der Ah\u00e9
610N/A * @compile/fail/ref=T6330920.out -XDrawDiagnostics T6330920.java
0N/A */
0N/A
0N/Apublic class T6330920 {
0N/A public void test(T6330920 x) {}
0N/A public void test(T6330920Missing x) {}
0N/A}