blob: f95627924017c50577f35db25a1098fae66226c9 [file] [log] [blame]
Mikaƫl Peltier69dbb162017-05-24 10:16:26 +02001// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5package interfacemethods.p1;
6
7interface I3 {
8
9 default void dump() {
10 System.out.println("I3");
11 }
12}