// "Import" "true"
// ERROR: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun String.minus(i: Integer): String defined in h in file minusOperator.before.Main.kt
public fun String.minus(str: String): String defined in h in file minusOperator.before.Main.kt
package h
import util.minus
interface H
fun f(h: H?) {
h - "other"
}
fun String.minus(str: String) = ""
fun String.minus(i: Integer) = ""