Files
kotlin-fork/idea/testData/quickfix/addIsToWhenCondition/class.kt
T
2018-06-19 12:48:13 +03:00

9 lines
112 B
Kotlin
Vendored

// "Add 'is' before 'Foo'" "true"
class Foo
fun test(a: Any) {
when (a) {
<caret>Foo -> {}
}
}