287N/A/**
383N/A * @test /nodynamiccopyright/
287N/A * @bug 6722234
287N/A * @summary javac diagnostics need better integration with the type-system
287N/A * @author mcimadamore
287N/A * @compile/fail/ref=T6722234c.out -XDrawDiagnostics -XDdiags=simpleNames T6722234c.java
287N/A */
287N/A
287N/Aclass T6722234c {
287N/A static class String {}
287N/A <T> void m(String s2) {}
287N/A
287N/A void test() {
287N/A m("");
287N/A }
287N/A}