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

10 lines
108 B
Kotlin
Vendored

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