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

5 lines
103 B
Kotlin
Vendored

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