Files
kotlin-fork/plugins/uast-kotlin/testData/WhenStringLiteral.kt
T
Jinseong Jeon 7f627ab480 FIR UAST: track all legacy test data since facade class is converted
These are mostly mechanical changes.
2021-05-06 20:19:29 +02:00

13 lines
162 B
Kotlin
Vendored

val a = readLine()
val b = when(a) {
"abc" -> 1
"def", "ghi" -> 2
else -> 3
}
when(a) {
"abc1" -> println(1)
"def1", "ghi1" -> println(2)
}