Files
kotlin-fork/analysis/analysis-api/testData/components/scopeProvider/scopeContextForPosition/smartCastInWhenEntryCondition.kt
T
2023-07-31 10:50:12 +00:00

9 lines
132 B
Kotlin
Vendored

class A
class B
private fun Any.test(): Int = when {
this is A && <expr>a</expr> -> 10
this is B && b -> 2
else -> 0
}