20aa8ebdb0
#KT-11629 Fixed
11 lines
210 B
Kotlin
Vendored
11 lines
210 B
Kotlin
Vendored
// PROBLEM: none
|
|
class FooException : RuntimeException()
|
|
|
|
fun createException() = FooException()
|
|
|
|
fun test(i: Int) {
|
|
val x = when (i) {
|
|
1 -> 10
|
|
else -> throw <caret>createException()
|
|
}
|
|
} |