Files
kotlin-fork/idea/testData/quickfix/autoImports/postfixOperator.after.kt
T
Pavel V. Talanov e693820fb4 Auto-imports for operator calls and infix calls
#KT-1613 Fixed
 #KT-4192 Fixed

Enable auto-import fix for "unresolved reference with wrong receiver" diagnostic
2013-12-31 13:24:38 +04:00

11 lines
121 B
Kotlin

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