Outer1.java revision 3792:d516975e8110
1109998Smarkm/*
2109998Smarkm * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
3109998Smarkm * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4109998Smarkm *
5109998Smarkm * This code is free software; you can redistribute it and/or modify it
6109998Smarkm * under the terms of the GNU General Public License version 2 only, as
7109998Smarkm * published by the Free Software Foundation.  Oracle designates this
8109998Smarkm * particular file as subject to the "Classpath" exception as provided
9215697Ssimon * by Oracle in the LICENSE file that accompanied this code.
10109998Smarkm *
11215697Ssimon * This code is distributed in the hope that it will be useful, but WITHOUT
12215697Ssimon * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13109998Smarkm * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14109998Smarkm * version 2 for more details (a copy is included in the LICENSE file that
15238405Sjkim * accompanied this code).
16238405Sjkim *
17238405Sjkim * You should have received a copy of the GNU General Public License version
18238405Sjkim * 2 along with this work; if not, write to the Free Software Foundation,
19109998Smarkm * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20109998Smarkm *
21109998Smarkm * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22109998Smarkm * or visit www.oracle.com if you need additional information or have any
23109998Smarkm * questions.
24109998Smarkm */
25109998Smarkm
26238405Sjkimpackage pack1;
27238405Sjkim
28109998Smarkmpublic class Outer1 {
29109998Smarkm    public static class Implem extends Outer.Inter {
30109998Smarkm        public Implem () {
31109998Smarkm            new Outer().super();
32109998Smarkm        }
33109998Smarkm    }
34238405Sjkim}
35238405Sjkim