Files
kotlin-fork/idea/testData/intentions/introduceImportAlias/addImportWithDefaultClassAndFunction.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

6 lines
99 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
val list: List<String>
val secondList = List<caret>(5) { 1 }
}