test/tools/javac/6835430/A.java

Fri, 24 Jul 2009 13:40:15 -0700

author
xdono
date
Fri, 24 Jul 2009 13:40:15 -0700
changeset 322
0695e8ebae88
parent 297
3d539f4123b8
child 554
9d9f26857129
permissions
-rw-r--r--

Added tag jdk7-b66 for changeset 634f519d6f9a

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

mercurial