Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/contextReceivers/kt51397.kt
T
2022-12-27 12:50:43 +00:00

12 lines
200 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
fun box(): String {
with(0) {
Child()
}
return "OK"
}
context(Int) open class Parent
context(Int) class Child : Parent()