// "Import" "true"
// ERROR: Unresolved reference.
None of the following candidates is applicable because of receiver type mismatch:
- internal fun h.A.plus(): kotlin.Int defined in h
- public fun kotlin.String?.plus(other: kotlin.Any?): kotlin.String defined in kotlin
package h
import util.plus
trait H
fun f(h: H?) {
+h
}
class A()
fun A.plus(): Int = 3