Files
kotlin-fork/idea/testData/inspectionsLocal/removeRedundantQualifierName/asReceiverProperty.kt
T
2019-04-22 11:58:43 +07:00

12 lines
168 B
Kotlin
Vendored

package inspector.p30879
import inspector.p30879.C.G
val <T> T.letVar: Int; get() = 0
fun test() {
C<caret>.G.letVar
}
class B { object G }
class C { object G }