Files
kotlin-fork/idea/testData/quickfix/autoImports/infixCallAndObject.kt.after
T
Valentin Kipyatkov 1bb6dae444 Auto-import fix should suggest declarations that cannot be used in this position
This also should fix KT-9122 Assertion error when psi modified from IDE

 #KT-9122 Fixed
2015-10-05 15:33:46 +03:00

13 lines
146 B
Plaintext
Vendored

// "Import" "true"
// ERROR: Unresolved reference: infix
package x
object infix {
fun invoke() {
}
}
fun x() {
"" <caret>infix ""
}