summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/classHierarchyAffected/sealedClassNestedImplAdded/use.kt.new.2
blob: 3034c5921b3e06316a7ca7fc3deeee84ca9a49f9 (plain)
1
2
3
4
5
6
7
8
import Base.*

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