mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
28 lines
447 B
Kotlin
Vendored
28 lines
447 B
Kotlin
Vendored
class C{
|
|
private var v : Int = 0
|
|
|
|
public fun foo() : Int {
|
|
{
|
|
v = v + 1
|
|
}.invoke()
|
|
|
|
object : Runnable {
|
|
public override fun run() {
|
|
v = v + 1
|
|
}
|
|
}.run()
|
|
|
|
Inner().innerFun()
|
|
|
|
return v
|
|
}
|
|
|
|
private inner class Inner() {
|
|
fun innerFun() {
|
|
v = v + 1
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box() = if (C().foo() == 3) "OK" else "NOT OK"
|