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

12 lines
116 B
Kotlin

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