20aa8ebdb0
#KT-11629 Fixed
12 lines
217 B
Kotlin
Vendored
12 lines
217 B
Kotlin
Vendored
// PROBLEM: none
|
|
class FooException : RuntimeException()
|
|
|
|
fun createException() = FooException()
|
|
|
|
fun test(i: Int) {
|
|
throw if (i == 1) {
|
|
<caret>FooException()
|
|
} else {
|
|
createException()
|
|
}
|
|
} |