Files
2023-02-28 09:17:41 +00:00

5 lines
99 B
Kotlin
Vendored

fun test(sj: SealedJava) = when (sj) {
is SubSealedAJava -> "O"
is SubSealedBJava -> "K"
}