9 lines
147 B
Plaintext
Vendored
9 lines
147 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
class Test {
|
|
@Throws(RuntimeException::class)
|
|
fun a() {
|
|
throw myError()
|
|
}
|
|
}
|
|
fun myError() = RuntimeException() |