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

10 lines
153 B
Plaintext
Vendored

// WITH_RUNTIME
class FooException : Exception()
class Test {
@Throws(FooException::class)
constructor() {
throw FooException()
}
}