Files
kotlin-fork/idea/testData/quickfix/autoImports/infixCall.before.Main.kt
T
2021-05-12 16:28:30 +00:00

11 lines
131 B
Kotlin
Vendored

// "Import" "true"
// ERROR: Unresolved reference: foo
package h
interface H
fun f(h: H) {
h <caret>foo h
}
/* IGNORE_FIR */