test/tools/javac/rawDiags/Warning.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 611
4172cfff05f0
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 6177732
duke@1 4 * @summary add hidden option to have compiler generate diagnostics in more machine-readable form
duke@1 5 * @compile/ref=Warning.out -XDrawDiagnostics -XDstdout -Xlint:unchecked Warning.java
duke@1 6 */
duke@1 7
duke@1 8 import java.util.HashSet;
duke@1 9 import java.util.Set;
duke@1 10
duke@1 11 class Warning
duke@1 12 {
duke@1 13 static void useUnchecked() {
duke@1 14 Set s = new HashSet<String>();
duke@1 15 s.add("abc");
duke@1 16 }
duke@1 17 }

mercurial