langtools/test/tools/javac/Diagnostics/6722234/T6722234c.java
author vromero
Tue, 26 Jul 2016 07:45:29 -0700
changeset 39812 6272642715a1
parent 3766 7e2df99e9223
child 40835 6ab9ed1abc46
permissions -rw-r--r--
8161019: javac, fold formatter options Reviewed-by: mcimadamore, jjg

/**
 * @test /nodynamiccopyright/
 * @bug     6722234
 * @summary javac diagnostics need better integration with the type-system
 * @author  mcimadamore
 * @compile/fail/ref=T6722234c.out -XDrawDiagnostics -diags:formatterOptions=simpleNames T6722234c.java
 */

class T6722234c {
    static class String {}
    <T> void m(String s2) {}

    void test() {
        m("");
    }
}