8 lines
122 B
Kotlin
Vendored
8 lines
122 B
Kotlin
Vendored
package b.nestedB
|
|
|
|
import a.A1 as AliasedA1
|
|
import a.A1
|
|
|
|
fun foo(x: AliasedA1): Int = TODO()
|
|
fun bar(x: A1): Int = TODO()
|