4d2caa8e76
* "Add parameter to function" quick fix: add function type instead of KFunction for method references #KT-33211 Fixed * Support suspend function references
8 lines
114 B
Kotlin
Vendored
8 lines
114 B
Kotlin
Vendored
// "Add parameter to function 'baz'" "true"
|
|
fun bar(): Int = 42
|
|
|
|
fun baz() {}
|
|
|
|
fun foo() {
|
|
baz(::bar<caret>)
|
|
} |