Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/contextReceivers/overloadPriority.kt
T
2022-04-06 16:05:35 +00:00

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
}
}