blob: 1928d2de5c90f9079b01217d313dc5c95454caae [file] [log] [blame]
// "Import" "true"
// ERROR: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: <br>public operator fun String?.plus(other: Any?): String defined in kotlin
package h
interface H
fun f(h: H?) {
h <caret>+ "other"
}