Files
kotlin-fork/idea/testData/inspectionsLocal/useExpressionBody/when.kt
T

9 lines
140 B
Kotlin
Vendored

// HIGHLIGHT: INFORMATION
fun sign(x: Int): Int {
<caret>return when {
x < 0 -> -1
x > 0 -> 1
else -> 0
}
}