Z1.java revision 0:9a66ca7c79fa
1239313Sdim/*
2239313Sdim * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
3239313Sdim * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4239313Sdim *
5239313Sdim * This code is free software; you can redistribute it and/or modify it
6239313Sdim * under the terms of the GNU General Public License version 2 only, as
7239313Sdim * published by the Free Software Foundation.
8239313Sdim *
9239313Sdim * This code is distributed in the hope that it will be useful, but WITHOUT
10239313Sdim * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11249423Sdim * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12249423Sdim * version 2 for more details (a copy is included in the LICENSE file that
13239313Sdim * accompanied this code).
14239313Sdim *
15239313Sdim * You should have received a copy of the GNU General Public License version
16239313Sdim * 2 along with this work; if not, write to the Free Software Foundation,
17243830Sdim * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18249423Sdim *
19239313Sdim * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20239313Sdim * CA 95054 USA or visit www.sun.com if you need additional information or
21239313Sdim * have any questions.
22239313Sdim */
23239313Sdim
24243830Sdimpackage z1;
25243830Sdim
26243830Sdimpublic class Z1 {
27243830Sdim    protected int x;
28239313Sdim    public static void main(String[] args) {
29243830Sdim        new z2.Z2.T();
30243830Sdim    }
31239313Sdim}
32263508Sdim