e0fa1e64b9
^KT-56549 Fixed
5 lines
99 B
Kotlin
Vendored
5 lines
99 B
Kotlin
Vendored
fun test(sj: SealedJava) = when (sj) {
|
|
is SubSealedAJava -> "O"
|
|
is SubSealedBJava -> "K"
|
|
}
|