a2f70dfc3d
* Remove redundant 'with' call: remove redundant 'return' keyword #KT-41298 Fixed
6 lines
82 B
Kotlin
Vendored
6 lines
82 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun test(): Int = <caret>with("") {
|
|
println()
|
|
return 42
|
|
}
|