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

9 lines
162 B
Plaintext
Vendored

// WITH_RUNTIME
class FooException : Exception()
class Test {
val getter: String
@Throws(FooException::class)
get() = throw FooException()
}