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

8 lines
114 B
Kotlin
Vendored

// PROBLEM: none
fun test(s: String?) {
val x: Any = if (s == null)
""
else
Unit<caret>
}