Files
kotlin-fork/idea/testData/quickfix/autoImports/infixCall.after.kt
T
2015-05-13 16:13:13 +02:00

12 lines
124 B
Kotlin
Vendored

// "Import" "true"
// ERROR: Unresolved reference: foo
package h
import util.foo
interface H
fun f(h: H) {
h foo h
}