mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
11 lines
303 B
Kotlin
Vendored
11 lines
303 B
Kotlin
Vendored
fun testInvoke() {
|
|
operator fun Nothing.invoke(): Nothing = this
|
|
todo()<!UNREACHABLE_CODE!>()<!>
|
|
}
|
|
|
|
fun testInvokeWithLambda() {
|
|
operator fun Nothing.invoke(<!UNUSED_PARAMETER!>i<!>: Int, f: () -> Int) = f
|
|
todo()<!UNREACHABLE_CODE!>(1){ 42 }<!>
|
|
}
|
|
|
|
fun todo(): Nothing = throw Exception() |