mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
32 lines
512 B
Kotlin
32 lines
512 B
Kotlin
class C {
|
|
private fun String.ext() : String = ""
|
|
private fun f() {}
|
|
|
|
public fun foo() : String {
|
|
{
|
|
"".ext()
|
|
f()
|
|
}.invoke()
|
|
|
|
object : Runnable {
|
|
public override fun run() {
|
|
"".ext()
|
|
f()
|
|
}
|
|
}.run()
|
|
|
|
Inner().innerFun()
|
|
|
|
return "OK"
|
|
}
|
|
|
|
private inner class Inner() {
|
|
fun innerFun() {
|
|
"".ext()
|
|
f()
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box() = C().foo()
|