Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/resolve/javaPackageMembers.kt
T
2015-11-18 14:35:53 +03:00

9 lines
202 B
Kotlin
Vendored

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