mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
11 lines
225 B
Plaintext
Vendored
11 lines
225 B
Plaintext
Vendored
class A {
|
|
fun foo(a: Int, b: Int): Int {
|
|
return object: Function0<Int> {
|
|
override fun invoke(): Int {
|
|
return i()
|
|
}
|
|
|
|
private fun i() = a + b - 1
|
|
}
|
|
}
|
|
} |