9 lines
172 B
Plaintext
Vendored
9 lines
172 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
class FooException : Exception()
|
|
|
|
class Test {
|
|
var setter: String = ""
|
|
@Throws(FooException::class)
|
|
set(value) = throw FooException()
|
|
} |