A.java revision 553:9d9f26857129
11592Srgrimes/*
215645Sjoerg * Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved.
315645Sjoerg * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
41592Srgrimes *
51592Srgrimes * This code is free software; you can redistribute it and/or modify it
61592Srgrimes * under the terms of the GNU General Public License version 2 only, as
71592Srgrimes * published by the Free Software Foundation.
81592Srgrimes *
91592Srgrimes * This code is distributed in the hope that it will be useful, but WITHOUT
101592Srgrimes * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
111592Srgrimes * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
121592Srgrimes * version 2 for more details (a copy is included in the LICENSE file that
131592Srgrimes * accompanied this code).
141592Srgrimes *
151592Srgrimes * You should have received a copy of the GNU General Public License version
161592Srgrimes * 2 along with this work; if not, write to the Free Software Foundation,
171592Srgrimes * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
181592Srgrimes *
191592Srgrimes * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
201592Srgrimes * or visit www.oracle.com if you need additional information or have any
211592Srgrimes * questions.
221592Srgrimes */
231592Srgrimes
241592Srgrimesclass A
251592Srgrimes{
261592Srgrimes    A() {
271592Srgrimes        D d = new D();
281592Srgrimes    }
291592Srgrimes}
301592Srgrimes
311592Srgrimesclass A1
321592Srgrimes{
3315645Sjoerg    A1() {
3419697Spst    }
351592Srgrimes}
361592Srgrimes
371592Srgrimesclass A2
381592Srgrimes{
391592Srgrimes    A2() {
401592Srgrimes    }
4115645Sjoerg}
421592Srgrimes