Files
kotlin-fork/idea/testData/inspectionsLocal/useExpressionBody/if.kt.after
T
2017-07-10 15:32:42 +03:00

9 lines
157 B
Plaintext
Vendored

// HIGHLIGHT: INFORMATION
fun abs(x: Int): Int =// No highlighting here
if (x > 0) {
x
}
else {
-x
}