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

14 lines
186 B
Kotlin
Vendored

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