Files
kotlin-fork/compiler/testData/ir/irText/declarations/contextReceivers/overloadPriority.kt
T
2022-04-06 16:05:40 +00:00

15 lines
176 B
Kotlin
Vendored

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