8e35b7a29c
#KT-38449 Fixed
10 lines
134 B
Plaintext
Vendored
10 lines
134 B
Plaintext
Vendored
fun b(body: () -> Int) = body()
|
|
|
|
class A {
|
|
fun test(): Int {
|
|
val i = 24
|
|
return b {
|
|
i
|
|
}
|
|
}
|
|
} |