Files
kotlin-fork/idea/testData/inspectionsLocal/removeRedundantQualifierName/kt35898.kt
T
2020-04-07 15:57:34 +07:00

9 lines
138 B
Kotlin
Vendored

// PROBLEM: none
class Test1<T: Any> {
private inner class Cell
fun check(o: Any) {
(o as? Test1<caret><*>.Cell)
}
}