10 lines
153 B
Plaintext
Vendored
10 lines
153 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
class FooException : Exception()
|
|
|
|
class Test {
|
|
@Throws(FooException::class)
|
|
constructor() {
|
|
throw FooException()
|
|
}
|
|
} |