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

7 lines
108 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun a() {
class Ex : RuntimeException()
<caret>throw Ex()
}