Files
kotlin-fork/idea/testData/quickfix/removeUnused/usedObjectAsAlias.kt
T
Vadim Brilyantov 0ec3d15218 #KT-19924: Fix usability issue with extract declaration from file intention
Fix ExtractDeclaration intention name in tests

Fix ExtractDeclaration intention folder and description to avoid "not found Dir URL" exception
2019-02-26 15:35:15 +03:00

11 lines
229 B
Kotlin
Vendored

// "Safe delete 'Imported'" "false"
// ACTION: Create test
// ACTION: Extract 'Imported' from current file
// ACTION: Rename file to Imported.kt
import Imported as Alias
object <caret>Imported
fun use() {
Alias.hashCode()
}