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