Files
kotlin-fork/idea/testData/navigation/gotoDeclaration/importAlias.test
T
2020-03-20 14:59:24 +00:00

18 lines
170 B
Plaintext
Vendored

// FILE: before.kt
package c
import c.I1 as I<caret>
interface I1
fun foo(i: I){}
// FILE: after.kt
package c
import c.I1 as I
interface <caret>I1
fun foo(i: I){}