blob: f1a21c9a783df0f1ca6d0f4b87c9f5c7c6916640 [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.resolution.singletarget.one;
public interface IrrelevantInterfaceWithDefault {
default void overriddenByIrrelevantInterface() {
System.out.println(IrrelevantInterfaceWithDefault.class.getCanonicalName());
}
}