Files
kotlin-fork/compiler/testData/ir/irText/when.kt
T
Dmitry Petrov b96626fd4c When expression.
Fix object & enum references.
2016-10-18 09:08:17 +03:00

10 lines
222 B
Kotlin
Vendored

object A
fun test(x: Any?) =
when (x) {
null -> "null"
A -> "A"
is String -> "String"
in setOf<Nothing>() -> "nothingness?"
else -> "something"
}