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

11 lines
121 B
Kotlin
Vendored

// PROBLEM: none
package my.simple.name
class Inner {
fun a() {
this<caret>.say()
}
fun say() {}
}