Files
kotlin-fork/idea/testData/quickfix/autoImports/beforeImportSingleFile.kt
T
2011-12-25 15:51:59 +04:00

10 lines
104 B
Kotlin

// "Import Class" "true"
package a
fun test() {
val v = <caret>M
}
package b {
class M() { }
}