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

5 lines
102 B
Kotlin
Vendored

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