Test.java revision 0
1607N/A/*
1607N/A * Copyright 1997 Sun Microsystems, Inc. All Rights Reserved.
1607N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1607N/A *
1607N/A * This code is free software; you can redistribute it and/or modify it
1607N/A * under the terms of the GNU General Public License version 2 only, as
1607N/A * published by the Free Software Foundation.
1607N/A *
1607N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1607N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1607N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1607N/A * version 2 for more details (a copy is included in the LICENSE file that
1607N/A * accompanied this code).
1607N/A *
1607N/A * You should have received a copy of the GNU General Public License version
1607N/A * 2 along with this work; if not, write to the Free Software Foundation,
1607N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1607N/A *
1607N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
1607N/A * CA 95054 USA or visit www.sun.com if you need additional information or
1607N/A * have any questions.
1607N/A */
1607N/A
1607N/A/*
3220N/A * @test
1607N/A * @bug 4070745
1607N/A * @summary The compiler used to crash when it saw a correctly-formed
1607N/A * InnerClasses attribute in a .class file.
1607N/A * @author turnidge
1607N/A *
2284N/A * @compile Test.java
3220N/A */
2543N/Apublic
1607N/Aclass Test {
1607N/A Outside x = null;
1607N/A}
1607N/A