Files
kotlin-fork/idea/testData/quickfix/autoImports/infixCall2.before.Main.kt
T
2015-10-12 15:10:39 +03:00

17 lines
403 B
Kotlin
Vendored

// "Import" "false"
// ERROR: Unresolved reference: foo
// ACTION: Create extension function 'foo'
// ACTION: Create extension property 'foo'
// ACTION: Create local variable 'foo'
// ACTION: Create member function 'foo'
// ACTION: Create member property 'foo'
// ACTION: Create parameter 'foo'
// ACTION: Replace infix call with ordinary call
package h
interface H
fun f(h: H) {
h <caret>foo h
}