blob: 90274629c1a66c24e82d070d7f18383c5a1790ce [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 8008276
* @summary assertion error in com.sun.tools.javac.comp.TransTypes.visitApply
* @compile/fail/ref=MissingError.out -XDrawDiagnostics MissingError.java
*/
class MissingError {
void test() {
mtest(new Bad(){ Integer i = ""; });
}
void mtest(Bad t){ }
}
class Bad {
String s = 1;
}