Files
kotlin-fork/idea/testData/inspectionsLocal/complexRedundantLet/multipleLines.kt
T
2019-06-25 14:37:04 +07:00

8 lines
134 B
Kotlin
Vendored

// WITH_RUNTIME
// HIGHLIGHT: INFORMATION
fun test() {
runCatching {
/* lots of code*/
}.let<caret> { println(it) }
}