8 lines
132 B
Kotlin
Vendored
8 lines
132 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class FooException : Exception()
|
|
|
|
class Test {
|
|
val getter: String
|
|
get() = <caret>throw FooException()
|
|
} |