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

5 lines
130 B
Plaintext
Vendored

// WITH_RUNTIME
@set:Throws(RuntimeException::class, Exception::class)
var setter: String = ""
set(value) = throw Exception()