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

10 lines
110 B
Kotlin

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