af6672c87d
KTIJ-26113
9 lines
132 B
Kotlin
Vendored
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
|
|
} |