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

5 lines
104 B
Kotlin
Vendored

// WITH_RUNTIME
@get:Throws(RuntimeException::class)
val a: String
get() = <caret>throw Exception()