Files
kotlin-fork/compiler/testData/ir/irText/expressions/whenWithSubjectVariable.kt
T
2018-06-20 14:06:34 +03:00

13 lines
246 B
Kotlin
Vendored

// !LANGUAGE: +VariableDeclarationInWhenSubject
fun foo(): Any = 1
fun test() =
when (val y = foo()) {
42 -> 1
is String -> y.length
!is Int -> 2
in 0..10 -> 3
!in 10..20 -> 4
else -> -1
}