20aa8ebdb0
#KT-11629 Fixed
13 lines
267 B
Kotlin
Vendored
13 lines
267 B
Kotlin
Vendored
// PROBLEM: Throwable instance 'FooException' is not thrown
|
|
// FIX: none
|
|
class FooException : RuntimeException()
|
|
|
|
fun createException() = FooException()
|
|
|
|
fun test(i: Int) {
|
|
if (i == 1) {
|
|
<caret>FooException()
|
|
} else {
|
|
createException()
|
|
}
|
|
} |