mcimadamore@8: /* mcimadamore@8: * Copyright 2008 Sun Microsystems, Inc. All Rights Reserved. mcimadamore@8: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. mcimadamore@8: * mcimadamore@8: * This code is free software; you can redistribute it and/or modify it mcimadamore@8: * under the terms of the GNU General Public License version 2 only, as mcimadamore@8: * published by the Free Software Foundation. mcimadamore@8: * mcimadamore@8: * This code is distributed in the hope that it will be useful, but WITHOUT mcimadamore@8: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or mcimadamore@8: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License mcimadamore@8: * version 2 for more details (a copy is included in the LICENSE file that mcimadamore@8: * accompanied this code). mcimadamore@8: * mcimadamore@8: * You should have received a copy of the GNU General Public License version mcimadamore@8: * 2 along with this work; if not, write to the Free Software Foundation, mcimadamore@8: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. mcimadamore@8: * mcimadamore@8: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, mcimadamore@8: * CA 95054 USA or visit www.sun.com if you need additional information or mcimadamore@8: * have any questions. mcimadamore@8: */ mcimadamore@8: mcimadamore@8: /* mcimadamore@8: * @test mcimadamore@8: * @bug 6663588 mcimadamore@8: * @summary Compiler goes into infinite loop for Cyclic Inheritance test case mcimadamore@8: * @author Maurizio Cimadamore mcimadamore@8: * @compile/fail T6663588.java mcimadamore@8: */ mcimadamore@8: mcimadamore@8: public class T6663588 extends T6663588 { mcimadamore@8: class Inner extends T6663588.Inner {} mcimadamore@8: }