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

8 lines
142 B
Kotlin
Vendored

// WITH_RUNTIME
class FooException : Exception()
class Test {
var setter: String = ""
set(value) = <caret>throw FooException()
}