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

12 lines
149 B
Kotlin
Vendored

package my.sample
class Inner {
fun a() {
my.sample<caret>.Inner.say()
}
companion object Inner {
fun say() {}
}
}