Files
kotlin-fork/idea/testData/quickfix/addStarProjections/inner/inner8.kt.after
T
2017-11-10 15:34:17 +03:00

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<*, *>
}
}