205a125c5f
^ KT-62980 fixed Merge-request: KT-MR-12786 Merged-by: Anna Kozlova <Anna.Kozlova@jetbrains.com>
10 lines
109 B
Kotlin
Vendored
10 lines
109 B
Kotlin
Vendored
// TYPE_ALIAS: as bar
|
|
import Foo.foo as bar
|
|
|
|
object Foo {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun test() {
|
|
b<caret>ar()
|
|
} |