Files
kotlin/compiler/testData/diagnostics/testsWithStdLib/resolve/javaPackageMembers.kt

9 lines
211 B
Kotlin
Vendored

fun fn(): Nothing = throw java.lang.RuntimeException("oops")
val x: Nothing = throw java.lang.RuntimeException("oops")
class SomeClass {
fun method() {
throw java.lang.AssertionError("!!!")
}
}