382bf9a500
Intention is not registered now; inspection is enabled by default now, but has highlight level of "No highlighting"
10 lines
215 B
Kotlin
Vendored
10 lines
215 B
Kotlin
Vendored
// "Create local variable '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)
|
|
}
|