blob: 79ac7b0d0b6e153b40212784c1cc7ba7a575ebf8 [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.desugaring.interfacemethods.test0;
public class TestMain implements InterfaceWithDefaults {
@Override
public void test() {
System.out.println("TestMain::test()");
this.foo();
this.bar();
}
@Override
public void foo() {
System.out.println("TestMain::foo()");
}
public static void main(String[] args) {
new TestMain().test();
}
}