mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
Intention is not registered now; inspection is enabled by default now, but has highlight level of "No highlighting"
10 lines
210 B
Kotlin
Vendored
10 lines
210 B
Kotlin
Vendored
// "Create parameter 'foo'" "false"
|
|
// ACTION: Rename reference
|
|
// ACTION: Create function 'foo'
|
|
// ERROR: Unresolved reference: foo
|
|
fun test(f: (Int) -> Int) {}
|
|
|
|
fun refer() {
|
|
val v = test(::<caret>foo)
|
|
}
|