Files
kotlin-fork/idea/testData/inspectionsLocal/removeRedundantQualifierName/notApplicableExpression3.kt
T
2019-02-27 20:43:35 +03:00

9 lines
128 B
Kotlin
Vendored

// PROBLEM: none
package my.simple.name
class Foo {
val f = this
fun check() {
f<caret>.f.f.f.f.f.f.f.f
}
}