0682a1f76d
#KT-62944 Fixed
15 lines
253 B
Kotlin
Vendored
15 lines
253 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !LANGUAGE: +ContextReceivers
|
|
// RENDER_DIAGNOSTICS_FULL_TEXT
|
|
|
|
context(String)
|
|
fun foo(x: Comparable<*>) {}
|
|
|
|
context(String)
|
|
fun foo(x: Number) {}
|
|
|
|
fun test() {
|
|
with("") {
|
|
<!OVERLOAD_RESOLUTION_AMBIGUITY!>foo<!>(1)
|
|
}
|
|
} |