6 lines
117 B
Kotlin
Vendored
6 lines
117 B
Kotlin
Vendored
// See KT-9134: smart cast is not provided inside lambda call
|
|
fun bar(): Int = {
|
|
var i: Int?
|
|
i = 42
|
|
i
|
|
}() |