20aa8ebdb0
#KT-11629 Fixed
9 lines
184 B
Kotlin
Vendored
9 lines
184 B
Kotlin
Vendored
// PROBLEM: Result of 'createError' call is not thrown
|
|
// FIX: none
|
|
class FooException : RuntimeException()
|
|
|
|
fun createError() = FooException()
|
|
|
|
fun test() {
|
|
createError<caret>()
|
|
} |