Files
kotlin-fork/compiler/testData/diagnostics/tests/incompleteCode/plusOnTheRight.fir.kt
T

12 lines
181 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
//EA-35646
package a
class MyClass1 {
public operator fun unaryPlus() {}
}
fun main(arg: MyClass1) {
arg<!UNRESOLVED_REFERENCE!>+<!><!SYNTAX!><!>
}