9 lines
115 B
Plaintext
Vendored
9 lines
115 B
Plaintext
Vendored
// "Add 'is' before 'Foo'" "true"
|
|
|
|
class Foo
|
|
|
|
fun test(a: Any) {
|
|
when (a) {
|
|
is Foo<caret> -> {}
|
|
}
|
|
} |