10 lines
228 B
Kotlin
Vendored
10 lines
228 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
fun fn(): Nothing = throw java.lang.RuntimeException("oops")
|
|
|
|
val x: Nothing = throw java.lang.RuntimeException("oops")
|
|
|
|
class SomeClass {
|
|
fun method() {
|
|
throw java.lang.AssertionError("!!!")
|
|
}
|
|
} |