Files
kotlin-fork/idea/testData/intentions/introduceImportAlias/conflictLocalName2.kt.after
T
2019-03-19 16:42:41 +07:00

22 lines
333 B
Plaintext
Vendored

import Outer.Middle.Inner.Companion.foo as foo3
class Outer {
class Middle {
class Inner {
companion object {
fun foo() {}
}
}
}
}
class Test() {
fun test2() {
val foo2 = 42
foo3()
}
fun test() {
val foo1 = 1
foo3()
}
}