B.java revision 3233:b5d08bc0d224
1214501Srpaulo/*
2214501Srpaulo * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
3214501Srpaulo * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4214501Srpaulo *
5214501Srpaulo * This code is free software; you can redistribute it and/or modify it
6252190Srpaulo * under the terms of the GNU General Public License version 2 only, as
7252190Srpaulo * published by the Free Software Foundation.
8214501Srpaulo *
9214501Srpaulo * This code is distributed in the hope that it will be useful, but WITHOUT
10214501Srpaulo * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11214501Srpaulo * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12214501Srpaulo * version 2 for more details (a copy is included in the LICENSE file that
13214501Srpaulo * accompanied this code).
14214501Srpaulo *
15214501Srpaulo * You should have received a copy of the GNU General Public License version
16214501Srpaulo * 2 along with this work; if not, write to the Free Software Foundation,
17214501Srpaulo * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18214501Srpaulo *
19214501Srpaulo * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20214501Srpaulo * or visit www.oracle.com if you need additional information or have any
21214501Srpaulo * questions.
22214501Srpaulo */
23252190Srpaulo
24252190Srpaulopackage p;
25252190Srpaulo
26252190Srpaulopublic class B extends I {      // should be "implements"
27214501Srpaulo}
28252190Srpaulo
29252190Srpaulointerface I {
30252190Srpaulo}
31214501Srpaulo