Files
kotlin-fork/idea/testData/quickfix/autoImports/infixCallAndObject.kt
T
Roman Golyshev 3ad9e4cb5c Use Import instead of action FQN
This way test data can be used both in the old plugin and in the
FIR plugin
2021-05-12 16:28:27 +00:00

14 lines
176 B
Kotlin
Vendored

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