PublicDerived8143647.java revision 3143:73adc11fd50f
1183724Ssos/*
2183724Ssos * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3183724Ssos * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4183724Ssos *
5183724Ssos * This code is free software; you can redistribute it and/or modify it
6183724Ssos * under the terms of the GNU General Public License version 2 only, as
7183724Ssos * published by the Free Software Foundation.
8183724Ssos *
9183724Ssos * This code is distributed in the hope that it will be useful, but WITHOUT
10183724Ssos * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11183724Ssos * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12183724Ssos * version 2 for more details (a copy is included in the LICENSE file that
13183724Ssos * accompanied this code).
14183724Ssos *
15183724Ssos * You should have received a copy of the GNU General Public License version
16183724Ssos * 2 along with this work; if not, write to the Free Software Foundation,
17183724Ssos * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18183724Ssos *
19183724Ssos * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20183724Ssos * or visit www.oracle.com if you need additional information or have any
21183724Ssos * questions.
22183724Ssos */
23183724Ssos
24183724Ssospackage pkg;
25183724Ssos
26183724Ssosabstract class PackagePrivateBase8143647 {
27183724Ssos    public String getX() {
28183724Ssos        return "PackagePrivateBase";
29183724Ssos    }
30183724Ssos}
31183724Ssos
32183724Ssospublic class PublicDerived8143647 extends PackagePrivateBase8143647 {
33183724Ssos}
34183724Ssos