mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
11 lines
234 B
Kotlin
Vendored
11 lines
234 B
Kotlin
Vendored
fun testInvoke() {
|
|
operator fun Nothing.invoke(): Nothing = this
|
|
todo()()
|
|
}
|
|
|
|
fun testInvokeWithLambda() {
|
|
operator fun Nothing.invoke(i: Int, f: () -> Int) = f
|
|
todo()(1){ 42 }
|
|
}
|
|
|
|
fun todo(): Nothing = throw Exception() |