Files
kotlin-fork/idea/testData/quickfix/autoImports/falsePostfixOperator.before.Main.kt
T

15 lines
302 B
Kotlin
Vendored

// "Import" "false"
// ACTION: Create extension function 'inc'
// ACTION: Create member function 'inc'
// ACTION: Replace overloaded operator with function call
// ERROR: Unresolved reference: ++
package h
interface H
@Suppress("UNUSED_CHANGED_VALUE")
fun f(h: H?) {
var h1 = h
h1<caret>++
}