d08b18f5f8
Converted from the relevant intention Reported cases: one-liners, whens Also, more exact caret detection in local inspection tests
8 lines
117 B
Plaintext
Vendored
8 lines
117 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
|
|
fun nullable() {}
|
|
|
|
fun bar() {}
|
|
|
|
fun foo(f: Boolean) = nullable() ?: if (f) bar() else bar()
|