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

9 lines
115 B
Plaintext
Vendored

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