973adb6a38
If they fail on other backends, use the IGNORE_BACKEND directive instead
10 lines
163 B
Kotlin
Vendored
10 lines
163 B
Kotlin
Vendored
// !LANGUAGE: +ContextReceivers
|
|
|
|
class C {
|
|
val result = "OK"
|
|
}
|
|
|
|
fun contextual(f: context(C) () -> String) = f(C())
|
|
|
|
fun box(): String = contextual { result }
|