Files
kotlin/plugins/uast-kotlin/testData/Elvis.kt
Vyacheslav Gerasimov 107879a78a Implement getTypeElement for UastKotlinPsiVariable
#KT-16849 Fixed
2017-04-10 12:40:33 +03:00

8 lines
152 B
Kotlin
Vendored

fun foo(bar: String): String? = null
fun bar() = 42
fun baz(): String? {
return foo("Lorem ipsum") ?: foo("dolor sit amet") ?: bar().toString()
}