15 lines
243 B
Kotlin
Vendored
15 lines
243 B
Kotlin
Vendored
// !LANGUAGE: +ContextReceivers
|
|
// TARGET_BACKEND: JVM_IR
|
|
|
|
context(String, Int)
|
|
fun overloaded(value: Any?) = "OK"
|
|
|
|
context(String)
|
|
fun overloaded(value: Any?) = "fail"
|
|
|
|
fun box() = with("42") {
|
|
with(42) {
|
|
overloaded(null)
|
|
}
|
|
}
|