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