// ISSUE: KT-51796 // WITH_STDLIB fun test(list: List?) { if (list?.isNullOrEmpty() == true) { return } list.size // should be unsafe call }