blob: ef49f4e155a9b3af44359868dc4338859d77a12b [file] [log] [blame]
// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package interfacemethods;
public class DefaultMethods {
interface I3 {
default int getValue() {
return 1;
}
}
static class C3 {
public int getValue() {
return 2;
}
}
static class C4 extends C3 implements I3 {
}
public static void main(String[] args) {
new C2().d1();
System.out.println(new C4().getValue());
}
}