Files
kotlin-fork/plugins/jvm-abi-gen/testData/compare/privateInterfaceDefaultImplementation/base/test.kt
T
2024-02-08 15:19:50 +00:00

8 lines
168 B
Kotlin
Vendored

package test
class SomeClass {
private interface PrivateInterface {
fun d() = "Default implementation of removed interface should not affect abi."
}
}