Files
kotlin-fork/idea/testData/intentions/introduceImportAlias/conflictLocalName.kt.after
T
2019-04-08 11:25:32 +07:00

18 lines
278 B
Plaintext
Vendored

import Outer.Middle.Inner.Companion.foo as foo1
class Outer {
class Middle {
class Inner {
companion object {
fun foo() {}
}
}
}
}
class Test() {
fun test() {
val foo = 1
foo<caret>1()
}
}