Files
kotlin-fork/jps-plugin/testData/incremental/classHierarchyAffected/sealedClassIndirectImplAdded/use.kt.new.2
T
2017-08-10 21:19:42 +03:00

5 lines
104 B
Plaintext
Vendored

fun use(x: Base): Int =
when (x) {
is Impl1 -> 1
is Impl2 -> 2
}