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

6 lines
115 B
Kotlin
Vendored

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