/* * 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; void m() default { } } interface II extends I { void m() default { 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 { void m() default { } } interface IllegalMods { static void m1(); static void m2() default { } static default void m3() { } abstract void m4() default { } abstract default void m5() { } default void m6(); default int i; default interface X { } }