blob: 5d1376f1f80ff3351915217177a6b0fa8b0bf9e6 [file]
// WITH_STDLIB
// Just make sure there's no VerifyError
fun getOrElse() =
mapOf<String, Int>().getOrElse("foo") { 3 }
fun isNotEmpty(l: ArrayList<Int>) =
l.iterator()?.hasNext() ?: false
fun box() = "OK"