test/langtools/tools/javac/6840059/T6840059.java
author bobv
Tue, 07 Nov 2017 10:30:53 -0500
changeset 47801 c7b50c23ea71
parent 47216 71c04702a3d5
permissions -rw-r--r--
8190283: Default heap sizing options select a MaxHeapSize larger than available physical memory in some cases Reviewed-by: tschatzl, sjohanss

/*
 * @test /nodynamiccopyright/
 * @bug 6840059
 * @summary 6758789: Some method resolution diagnostic should be improved
 * @author Maurizio Cimadamore
 *
 * @compile/fail/ref=T6840059.out -XDrawDiagnostics T6840059.java
 */

class T6840059 {

    T6840059(Integer x) {}

    void test() {
        new T6840059(""){};
    }
}