8 lines
117 B
Kotlin
Vendored
8 lines
117 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class Test {
|
|
fun a() {
|
|
<caret>throw myError()
|
|
}
|
|
}
|
|
fun myError() = RuntimeException() |