test/tools/javac/generics/inference/T6835428.java

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

author
jjg
date
Thu, 27 Aug 2009 11:08:27 -0700
changeset 384
ed31953ca025
parent 298
3ac205ad1f05
child 554
9d9f26857129
permissions
-rw-r--r--

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

mcimadamore@298 1 /*
mcimadamore@298 2 * Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
mcimadamore@298 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@298 4 *
mcimadamore@298 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@298 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@298 7 * published by the Free Software Foundation.
mcimadamore@298 8 *
mcimadamore@298 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@298 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@298 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@298 12 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@298 13 * accompanied this code).
mcimadamore@298 14 *
mcimadamore@298 15 * You should have received a copy of the GNU General Public License version
mcimadamore@298 16 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@298 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@298 18 *
mcimadamore@298 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
mcimadamore@298 20 * CA 95054 USA or visit www.sun.com if you need additional information or
mcimadamore@298 21 * have any questions.
mcimadamore@298 22 */
mcimadamore@298 23
mcimadamore@298 24 /**
mcimadamore@298 25 * @test
mcimadamore@298 26 * @bug 6835428
mcimadamore@298 27 * @author mcimadamore
mcimadamore@298 28 * @summary regression: return-type inference rejects valid code
mcimadamore@298 29 * @compile T6835428.java
mcimadamore@298 30 */
mcimadamore@298 31
mcimadamore@298 32 class T6835428<T> {
mcimadamore@298 33 interface X<T> {}
mcimadamore@298 34 <T extends Comparable<? super T>> T6835428<X<T>> m() { return null; }
mcimadamore@298 35 <T extends Comparable<? super T>> void test() {
mcimadamore@298 36 T6835428<X<T>> t = m();
mcimadamore@298 37 }
mcimadamore@298 38 }

mercurial