20aa8ebdb0
#KT-11629 Fixed
7 lines
154 B
Kotlin
Vendored
7 lines
154 B
Kotlin
Vendored
// PROBLEM: Throwable instance 'FooException' is not thrown
|
|
// FIX: none
|
|
class FooException : RuntimeException()
|
|
|
|
fun test() {
|
|
<caret>FooException()
|
|
} |