Files
kotlin-fork/idea/testData/quickfix/autoImports/infixCall.after.kt
T
2014-01-16 22:11:55 +04:00

12 lines
120 B
Kotlin

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