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

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>()
}