Files
kotlin-fork/idea/testData/quickfix/surroundWithNullCheck/unsafeCallInBinary.kt.after
T
2016-06-13 15:33:36 +03:00

7 lines
122 B
Plaintext
Vendored

// "Surround with null check" "true"
fun foo(arg: Int?) {
if (arg != null) {
42 + arg.hashCode() - 13
}
}