mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
18 lines
196 B
Kotlin
Vendored
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
|
|
// 3 defaultFun\$
|