Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/contextReceivers/fromKEEP/clickHandler.kt
T
2021-12-02 20:24:16 +03:00

11 lines
232 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
// FIR_IDENTICAL
class Button
class ClickEvent
typealias ClickHandler = context(Button) (ClickEvent) -> Unit
fun handleClick(clickHandler: ClickHandler) {
clickHandler(Button(), ClickEvent())
}