b8c5d1b852
So #KT-20763 Fixed
7 lines
166 B
Plaintext
Vendored
7 lines
166 B
Plaintext
Vendored
// "Add star projections" "true"
|
|
class A<T, U> {
|
|
inner class B<V, W> {
|
|
inner class C<X, Y>
|
|
fun test(x: Any) = x is A<*, *>.B<*, *>.C<*, *>
|
|
}
|
|
} |