Files
kotlin-fork/idea/testData/quickfix/autoImports/divOperator.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
106 B
Kotlin

// "Import" "true"
// ERROR: Unresolved reference: /
import util.div
trait H
fun f(h: H) {
h / 3
}