Files
kotlin-fork/jps-plugin/testData/incremental/classHierarchyAffected/sealedClassNestedImplAdded/use.kt.new.2
T
2017-08-10 21:19:42 +03: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"
}