15 lines
192 B
Kotlin
Vendored
15 lines
192 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !LANGUAGE: +ContextReceivers
|
|
|
|
class Context
|
|
|
|
context(Context)
|
|
fun f(): String = TODO()
|
|
|
|
fun f(): Any = TODO()
|
|
|
|
fun test() {
|
|
with(Context()) {
|
|
f().length
|
|
}
|
|
} |