Files
kotlin-fork/idea/testData/inspectionsLocal/redundantUnitExpression/redundant5.kt
T
2017-10-31 14:51:06 +03:00

7 lines
114 B
Kotlin
Vendored

// WITH_RUNTIME
fun test() {
val x: List<Unit> = listOf(1, 2, 3).map {
return@map <caret>Unit
}
}