test/tools/javac/6835430/T6835430.java

Tue, 16 Jun 2009 10:45:42 +0100

author
mcimadamore
date
Tue, 16 Jun 2009 10:45:42 +0100
changeset 297
3d539f4123b8
child 554
9d9f26857129
permissions
-rw-r--r--

6835430: javac does not generate signature attributes for classes extending parameterized inner classes
Summary: ClassWriter does not consider outer params of an inner class when emitting signature attributes
Reviewed-by: jjg

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 /*
mcimadamore@297 25 * @test
mcimadamore@297 26 * @bug 6835430
mcimadamore@297 27 * @summary 6835430: javac does not generate signature attributes for classes extending parameterized inner classes
mcimadamore@297 28 * @author mcimadamore
mcimadamore@297 29 *
mcimadamore@297 30 * @compile A.java
mcimadamore@297 31 * @compile T6835430.java
mcimadamore@297 32 */
mcimadamore@297 33
mcimadamore@297 34 class T6835430 {
mcimadamore@297 35 void test(B.D d) {
mcimadamore@297 36 B b = d.getT();
mcimadamore@297 37 }
mcimadamore@297 38 }

mercurial