Files
kotlin-fork/idea/testData/inspectionsLocal/branched/introduceWhenSubject/this.kt
T
2019-05-14 23:25:10 +03:00

7 lines
126 B
Kotlin
Vendored

fun Number.test() {
<caret>when {
this is Int -> {}
this is Long -> {}
this is Short -> {}
}
}