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

8 lines
132 B
Kotlin
Vendored

// WITH_RUNTIME
class FooException : Exception()
class Test {
val getter: String
get() = <caret>throw FooException()
}