0a5aa2b60c
#KT-21999 Fixed
15 lines
176 B
Kotlin
Vendored
15 lines
176 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun foo(f: () -> Unit) {}
|
|
|
|
class Bar {
|
|
fun bar() {}
|
|
}
|
|
|
|
class Test {
|
|
fun test() {
|
|
Bar().run {
|
|
foo { <caret>bar() }
|
|
}
|
|
}
|
|
}
|