blob: 17c55b2ec7fb2a480bece49eb3410b5c03641d8c [file] [log] [blame] [edit]
fun foo(bar: String): String? = null
fun bar() = 42
fun baz(): String? {
return foo("Lorem ipsum") ?: foo("dolor sit amet") ?: bar().toString()
}