Files
kotlin-fork/analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/whenWithVal.kt
T
2022-10-05 15:06:52 +00:00

6 lines
115 B
Kotlin
Vendored

fun test(v: Any?) {
when (<expr>val h = v.hashCode()</expr>) {
is Number -> 5
else -> 9
}
}