fb4c256d08
Fixed test (while resolve with library on android): 'run' resolves to library function
7 lines
87 B
Kotlin
7 lines
87 B
Kotlin
fun foo() {
|
|
<caret>bar { }
|
|
}
|
|
|
|
fun bar(a: Any) = a
|
|
fun <T> bar(f: () -> T): T = f()
|