Files
kotlin-fork/jps/jps-plugin/testData/incremental/classHierarchyAffected/sealedClassNestedImplAdded/use.kt.new.2
T
2022-01-12 15:09:45 +01:00

8 lines
142 B
Plaintext
Vendored

import Base.*
fun use(x: Base): String =
when (x) {
is A -> "A"
is B -> "B"
is C -> "C"
}