Files
kotlin-fork/idea/testData/inspectionsLocal/throwableNotThrown/when3.kt
T
Toshiaki Kameyama 20aa8ebdb0 Add "Throwable not thrown" Inspection
#KT-11629 Fixed
2019-03-01 11:35:12 +03:00

12 lines
271 B
Kotlin
Vendored

// PROBLEM: Result of 'createException' call is not thrown
// FIX: none
class FooException : RuntimeException()
fun createException() = FooException()
fun test(i: Int) {
val e = when (i) {
1 -> FooException()
else -> <caret>createException()
}
}