d08b18f5f8
Converted from the relevant intention Reported cases: one-liners, whens Also, more exact caret detection in local inspection tests
9 lines
158 B
Plaintext
Vendored
9 lines
158 B
Plaintext
Vendored
// HIGHLIGHT: INFORMATION
|
|
|
|
fun abs(x: Int): Int = // No highlighting here
|
|
if (x > 0) {
|
|
x
|
|
}
|
|
else {
|
|
-x
|
|
} |