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

12 lines
120 B
Kotlin
Vendored

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