Files
kotlin-fork/idea/testData/intentions/introduceImportAlias/conflictLocalName.kt
T
Dmitry Gridin 147521d6cb Add intention to introduce import alias
#KT-16118 Fixed
 #KT-30007 Fixed
2019-02-21 12:25:09 +03:00

16 lines
247 B
Kotlin
Vendored

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