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

9 lines
210 B
Kotlin
Vendored

// PROBLEM: none
class FooException : RuntimeException()
class BarException : RuntimeException()
fun test(i: Int?): RuntimeException {
val x = i ?: return <caret>FooException()
return BarException()
}