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

9 lines
127 B
Kotlin
Vendored

// WITH_RUNTIME
class FooException : Exception()
class Test {
constructor() {
<caret>throw FooException()
}
}