/* * Copyright 2000-2012 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ class C { interface I { int i = 42; default void m() { } } interface II extends I { default void m() { I.super.m(); super.m(); System.out.println(I.super.i); System.out.println(super.i); } void ma(); } void test() { new I(){}.m(); new II() { public void ma() { I.super.m(); II.super.m(); II.super.ma(); } }.m(); } } class D { default void m() { } } interface IllegalMods { void m1() default; { } static void m2(); static default void m3() { } abstract default void m4() { } default void m5(); default int i; default interface X { } }