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

9 lines
172 B
Plaintext
Vendored

// WITH_RUNTIME
class FooException : Exception()
class Test {
var setter: String = ""
@Throws(FooException::class)
set(value) = throw FooException()
}