Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/contextReceivers/overloadPriority.kt
T
2021-12-02 20:24:16 +03:00

14 lines
175 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
class Context
context(Context)
fun f(): String = TODO()
fun f(): Any = TODO()
fun test() {
with(Context()) {
f().length
}
}