Files
kotlin/compiler/testData/codegen/bytecodeText/interfaces/noPrivateMemberInJavaInterface.kt
2015-09-24 12:00:18 +03:00

17 lines
193 B
Kotlin
Vendored

interface A {
private val prop: String
get() = "1"
private fun foo() {
}
private fun defaultFun(p: String = "OK") {
}
}
// 1 foo
// 1 getProp
// 1 defaultFun\$