Files
kotlin-fork/idea/testData/intentions/addThrowsAnnotation/functionCall.kt
T

8 lines
117 B
Kotlin
Vendored

// WITH_RUNTIME
class Test {
fun a() {
<caret>throw myError()
}
}
fun myError() = RuntimeException()