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

7 lines
104 B
Kotlin
Vendored

// WITH_RUNTIME
class FooException : Exception()
@Throws
fun test() {
throw FooException()<caret>
}