// "Import" "true"
// ERROR: Unresolved reference.
None of the following candidates is applicable because of receiver type mismatch:
- internal fun jet.String.minus(str: jet.String): jet.String defined in h
- internal fun jet.String.minus(i: java.lang.Integer): jet.String defined in h
package h
import util.minus
trait H
fun f(h: H?) {
h - "other"
}
fun String.minus(str: String) = ""
fun String.minus(i: Integer) = ""