Files
kotlin-fork/idea/resources/intentionDescriptions/IntroduceImportAliasIntention/before.kt.template
T
Dmitry Gridin 147521d6cb Add intention to introduce import alias
#KT-16118 Fixed
 #KT-30007 Fixed
2019-02-21 12:25:09 +03:00

10 lines
152 B
Plaintext

import com.test.api1.data.Movie
class Test(){
fun test(){
val m = <spot>Movie</spot>()
}
fun test2(){
val m = Movie()
}
}