a320152a03
This reverts commit 4bf63a9539.
32 lines
607 B
Plaintext
Vendored
32 lines
607 B
Plaintext
Vendored
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public abstract interface Foo {
|
|
|
|
public default void foo() {
|
|
}
|
|
|
|
public default void foo2(int a) {
|
|
}
|
|
|
|
public abstract void bar();
|
|
|
|
@kotlin.Metadata()
|
|
public static final class DefaultImpls {
|
|
|
|
public DefaultImpls() {
|
|
super();
|
|
}
|
|
|
|
@java.lang.Deprecated()
|
|
public static void foo(@org.jetbrains.annotations.NotNull()
|
|
Foo $this) {
|
|
}
|
|
|
|
@java.lang.Deprecated()
|
|
public static void foo2(@org.jetbrains.annotations.NotNull()
|
|
Foo $this, int a) {
|
|
}
|
|
}
|
|
}
|