author | sogoel |
Thu, 05 Jun 2014 10:57:10 -0700 | |
changeset 24797 | 850ebd4d80a7 |
parent 3766 | 7e2df99e9223 |
permissions | -rw-r--r-- |
/* * @test /nodynamiccopyright/ * @bug 6758789 * @summary 6758789: Some method resolution diagnostic should be improved * @author Maurizio Cimadamore * * @compile/fail/ref=T6758789a.out -XDrawDiagnostics T6758789a.java */ class T6758789a { void m1() {} void m2(int i) {} void test() { m1(1); m2(); } }