Files
kotlin-fork/idea/testData/inspectionsLocal/removeRedundantQualifierName/notApplicableAsReceiver.kt
T
2019-04-11 15:13:17 +07:00

17 lines
139 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
import C.G
fun test() {
<caret>B.G.let { it }
}
class B {
object G
}
class C {
object G
}