Files
kotlin-fork/idea/testData/inspectionsLocal/redundantWith/asInitializer.kt
T
Toshiaki Kameyama a2f70dfc3d KT-41298 "Remove redundant 'with' call" intention works incorrectly with non-local returns and single-expression functions (#3713)
* Remove redundant 'with' call: remove redundant 'return' keyword

#KT-41298 Fixed
2020-09-25 12:48:31 +02:00

6 lines
82 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(): Int = <caret>with("") {
println()
return 42
}