mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-15 08:31:35 +00:00
11 lines
85 B
Plaintext
Vendored
11 lines
85 B
Plaintext
Vendored
object A {
|
|
fun foo() {
|
|
|
|
}
|
|
}
|
|
|
|
fun bar() {
|
|
a().foo()
|
|
}
|
|
|
|
private fun a() = A |