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