blob: 9eb15784ec6cdf3390fef195337bf63f38c657b8 [file] [log] [blame]
// Copyright (c) 2018, 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 com.android.tools.r8.debug.classes;
public interface InterfaceWithDefaultAndStaticMethods {
default void doSomething(String msg) {
String name = getClass().getName();
System.out.println(name + ": " + msg);
}
static void printString(String msg) {
System.out.println(msg);
}
}