Files
kotlin/compiler/testData/codegen/bytecodeText/interfaces/noPrivateMemberInJavaInterface.kt
2016-02-01 18:32:12 +03:00

18 lines
196 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\$