test/tools/javac/Diagnostics/6799605/T6799605.java

Thu, 25 Aug 2011 17:18:25 -0700

author
schien
date
Thu, 25 Aug 2011 17:18:25 -0700
changeset 1067
f497fac86cf9
parent 384
ed31953ca025
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Added tag jdk8-b02 for changeset b3c059de2a61

mcimadamore@238 1 /**
jjg@384 2 * @test /nodynamiccopyright/
mcimadamore@238 3 * @bug 6799605
mcimadamore@238 4 * @summary Basic/Raw formatters should use type/symbol printer instead of toString()
mcimadamore@238 5 * @author mcimadamore
mcimadamore@238 6 * @compile/fail/ref=T6799605.out -XDrawDiagnostics T6799605.java
mcimadamore@296 7 * @compile/fail/ref=T6799605.out -XDoldDiags -XDrawDiagnostics T6799605.java
mcimadamore@238 8 */
mcimadamore@238 9
mcimadamore@238 10 class T6799605<X> {
mcimadamore@238 11
mcimadamore@238 12 <T extends T6799605<T>> void m(T6799605<T> x1) {}
mcimadamore@238 13 <T> void m(T6799605<T> x1, T6799605<T> x2) {}
mcimadamore@238 14 <T> void m(T6799605<T> x1, T6799605<T> x2, T6799605<T> x3) {}
mcimadamore@238 15
mcimadamore@238 16 void test(T6799605<?> t) {
mcimadamore@238 17 m(t);
mcimadamore@238 18 m(t, t);
mcimadamore@238 19 m(t, t, t);
mcimadamore@238 20 }
mcimadamore@238 21 }

mercurial