Files
kotlin/compiler/testData/codegen/bytecodeListing/privateDefaultImpls.kt
2020-03-18 14:18:47 +03:00

4 lines
68 B
Kotlin
Vendored

interface A {
private fun foo() {}
private val x get() = 1
}