6354d9d54f
#KT-19580
8 lines
142 B
Plaintext
Vendored
8 lines
142 B
Plaintext
Vendored
import Base.*
|
|
|
|
fun use(x: Base): String =
|
|
when (x) {
|
|
is A -> "A"
|
|
is B -> "B"
|
|
is C -> "C"
|
|
} |