Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/resolve/javaPackageMembers.kt
T

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("!!!")
}
}