13 lines
191 B
Kotlin
Vendored
13 lines
191 B
Kotlin
Vendored
// "class org.jetbrains.kotlin.idea.quickfix.ImportFix" "false"
|
|
// ERROR: Unresolved reference: infix
|
|
package x
|
|
|
|
object infix {
|
|
fun invoke() {
|
|
|
|
}
|
|
}
|
|
|
|
fun x() {
|
|
"" <caret>infix ""
|
|
} |