6194bc10f8
#KT-19322 Fixed
7 lines
86 B
Kotlin
Vendored
7 lines
86 B
Kotlin
Vendored
// MOVE: up
|
|
fun takeLamb(f: () -> Unit) {}
|
|
takeLamb {
|
|
<caret>foo()
|
|
}
|
|
|
|
fun foo() {} |