8 lines
142 B
Kotlin
Vendored
8 lines
142 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class FooException : Exception()
|
|
|
|
class Test {
|
|
var setter: String = ""
|
|
set(value) = <caret>throw FooException()
|
|
} |