11 lines
167 B
Plaintext
11 lines
167 B
Plaintext
class A {
|
|
fun foo(a: Int, b: Int): Int {
|
|
fun i(): Int {
|
|
return a + b - 1
|
|
}
|
|
|
|
return {
|
|
i()
|
|
}.invoke()
|
|
}
|
|
} |