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

13 lines
132 B
Kotlin

// "Import" "true"
// ERROR: Unresolved reference: ++
package h
import util.inc
trait H
fun f(h: H?) {
var h1 = h
h1++
}