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

16 lines
122 B
Kotlin
Vendored

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