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