test/tools/javac/miranda/T4666866.java

Thu, 23 Oct 2008 18:29:11 +0100

author
mcimadamore
date
Thu, 23 Oct 2008 18:29:11 +0100
changeset 158
c6e3fc6dda61
parent 1
9a66ca7c79fa
child 288
d402db1005ad
permissions
-rw-r--r--

6557954: Inner class type parameters doesn't get substituted when checking type well-formedness
Summary: Validator.visitTypeApply should substitute all formal typevars with actual parameters
Reviewed-by: jjg

duke@1 1 /*
duke@1 2 * @test /nodynamiccopyright/
duke@1 3 * @bug 4666866 4785453
duke@1 4 * @summary REGRESSION: Generated error message unhelpful for missing methods
duke@1 5 * @author gafter
duke@1 6 *
duke@1 7 * @compile/fail/ref=T4666866.out -XDstdout -XDdiags=%b:%l:%_%m T4666866.java
duke@1 8 */
duke@1 9
duke@1 10 class t implements Runnable {}

mercurial