Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/jvmDefaultAll.txt
T
Nicklas Ansman Giertz 22ab43838b KAPT: Skip importing java.lang.System in the stubs
This fixes KT-43117
2023-01-12 18:01:10 +01:00

15 lines
223 B
Plaintext
Vendored

@kotlin.Metadata()
public abstract interface Foo {
public default void foo() {
}
public default void foo2(int a) {
}
public abstract void bar();
private void privateMethodWithDefault() {
}
}