Files
kotlin-fork/compiler/testData/diagnostics/tests/kt55181.kt
T
Nikolay Lunyak c3b871652f [FIR] KT-55181: Ensure throw argument is Throwable
`TYPE_MISMATCH` in `throwJLException.fir.kt` appeared,
because in `throw Exn` the type of `Exn` is implicit Unit.
This is red code anyway.

^KT-55181 Fixed

Merge-request: KT-MR-8292
Merged-by: Nikolay Lunyak <Nikolay.Lunyak@jetbrains.com>
2023-01-16 17:24:22 +00:00

6 lines
67 B
Kotlin
Vendored

// FIR_IDENTICAL
fun main() {
throw <!TYPE_MISMATCH!>"str"<!>
}