9 lines
137 B
Plaintext
Vendored
9 lines
137 B
Plaintext
Vendored
// "Surround with null check" "true"
|
|
|
|
operator fun Int.invoke() = this
|
|
|
|
fun foo(arg: Int?) {
|
|
if (arg != null) {
|
|
arg()
|
|
}
|
|
} |