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

9 lines
110 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
class X {
init {
<caret>throw RuntimeException()
}
}