1bb6dae444
This also should fix KT-9122 Assertion error when psi modified from IDE #KT-9122 Fixed
13 lines
195 B
Kotlin
Vendored
13 lines
195 B
Kotlin
Vendored
// "class org.jetbrains.kotlin.idea.quickfix.AutoImportFix" "false"
|
|
// ERROR: Unresolved reference: infix
|
|
package x
|
|
|
|
object infix {
|
|
fun invoke() {
|
|
|
|
}
|
|
}
|
|
|
|
fun x() {
|
|
"" <caret>infix ""
|
|
} |