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