test/tools/javac/T6224167.java

Tue, 13 Jan 2009 13:28:42 +0000

author
mcimadamore
date
Tue, 13 Jan 2009 13:28:42 +0000
changeset 186
09eb1acc9610
parent 1
9a66ca7c79fa
child 611
4172cfff05f0
permissions
-rw-r--r--

6723444: javac fails to substitute type variables into a constructor's throws clause
Summary: Added constructor's actual type info to NewClass AST node
Reviewed-by: jjg
Contributed-by: mark@twistedbanana.demon.co.uk

duke@1 1 /*
duke@1 2 * @test /nodynamiccopyright/
duke@1 3 * @bug 6224167
duke@1 4 * @summary misleading error message when both array and varargs
duke@1 5 * methods are defined
duke@1 6 * @compile/fail/ref=T6224167.out -XDstdout -XDrawDiagnostics T6224167.java
duke@1 7 */
duke@1 8 class T6224167
duke@1 9 {
duke@1 10 void printf(String s, Object[] args) { }
duke@1 11 void printf(String s, Object... args) { }
duke@1 12 }

mercurial