blob: e43823fea583c72c53daef6023200e3812c8bd75 [file] [log] [blame]
// "Surround with null check" "true"
// WITH_RUNTIME
fun Int.bar() = this
fun foo(arg: Int?) {
run(fun() = arg<caret>.bar())
}