9 lines
162 B
Plaintext
Vendored
9 lines
162 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
class FooException : Exception()
|
|
|
|
class Test {
|
|
val getter: String
|
|
@Throws(FooException::class)
|
|
get() = throw FooException()
|
|
} |