Files
kotlin-fork/idea/testData/quickfix/autoImports/unaryMinusOperator.after.kt
T

12 lines
125 B
Kotlin
Vendored

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