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

5 lines
119 B
Kotlin
Vendored

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