9 lines
127 B
Kotlin
Vendored
9 lines
127 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class FooException : Exception()
|
|
|
|
class Test {
|
|
constructor() {
|
|
<caret>throw FooException()
|
|
}
|
|
} |