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

5 lines
102 B
Kotlin
Vendored

// "Add star projections" "true"
class A<T> {
inner class B
fun test(x: Any) = x is B<caret>
}