C.java revision 1614:12202e6ab78a
1167165Sflz/*
2167165Sflz * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
3167165Sflz * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4167165Sflz *
5167165Sflz * This code is free software; you can redistribute it and/or modify it
6167165Sflz * under the terms of the GNU General Public License version 2 only, as
7167165Sflz * published by the Free Software Foundation.
8167165Sflz *
9167165Sflz * This code is distributed in the hope that it will be useful, but WITHOUT
10167165Sflz * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11167165Sflz * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12167165Sflz * version 2 for more details (a copy is included in the LICENSE file that
13167165Sflz * accompanied this code).
14167165Sflz *
15167165Sflz * You should have received a copy of the GNU General Public License version
16167165Sflz * 2 along with this work; if not, write to the Free Software Foundation,
17167165Sflz * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18167165Sflz *
19167165Sflz * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20167165Sflz * or visit www.oracle.com if you need additional information or have any
21167165Sflz * questions.
22167165Sflz */
23167165Sflzpackage p1;
24167165Sflz
25167165Sflzclass Sup {
26167165Sflz    public void m() { }
27167165Sflz}
28167165Sflz
29167165Sflzpublic class C extends Sup { }
30167165Sflz