blob: bba4c445cf6fea1e0b10faac2713b91bef61637a [file] [log] [blame]
// "Wrap with '?.let { ... }' call" "true"
// WITH_RUNTIME
operator fun Int.invoke() = this
fun foo(arg: Int?) {
arg?.let { it() }
}