3aa6c9e74d
^KT-58240
12 lines
250 B
Kotlin
Vendored
12 lines
250 B
Kotlin
Vendored
// !LANGUAGE: +ContextReceivers
|
|
// KT-61141: K1/Native does not support context receivers
|
|
// IGNORE_BACKEND_K1: NATIVE
|
|
|
|
class C {
|
|
val result = "OK"
|
|
}
|
|
|
|
fun contextual(f: context(C) () -> String) = f(C())
|
|
|
|
fun box(): String = contextual { result }
|