20aa8ebdb0
#KT-11629 Fixed
9 lines
210 B
Kotlin
Vendored
9 lines
210 B
Kotlin
Vendored
// PROBLEM: none
|
|
class FooException : RuntimeException()
|
|
|
|
class BarException : RuntimeException()
|
|
|
|
fun test(i: Int?): RuntimeException {
|
|
val x = i ?: return <caret>FooException()
|
|
return BarException()
|
|
} |