9 lines
194 B
Plaintext
Vendored
9 lines
194 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
class FooException : Exception()
|
|
|
|
class BarException : Exception()
|
|
|
|
@Throws(exceptionClasses = [BarException::class, FooException::class])
|
|
fun test() {
|
|
throw FooException()
|
|
} |