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

Thu, 27 Aug 2009 11:08:27 -0700

author
jjg
date
Thu, 27 Aug 2009 11:08:27 -0700
changeset 384
ed31953ca025
parent 296
a9c04a57a39f
child 2525
2eb010b6cb22
permissions
-rw-r--r--

6875336: some tests should use /nodynamiccopyright/
Reviewed-by: darcy

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