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

8 lines
135 B
Plaintext
Vendored

import kotlin.collections.List as List1
// WITH_RUNTIME
fun foo() {
val list: List1<String>
val secondList = List1(5) { 1 }
}