blob: 7c427ee2d2cf56a68f9702f62f5f6846ef7b899e [file] [log] [blame]
// "Surround with null check" "true"
operator fun Int.invoke() = this
fun foo(arg: Int?) {
<caret>arg()
}