Files
kotlin-fork/idea/testData/quickfix/autoImports/importInFirstPartInQualifiedExpression.after.kt
T
Nikolay Krasko c224b6441d KT-3133 Editor suggest to specify the package when it already has specified
Do not suggest imports in imports and in qualified names
 #KT-3133 Fixed
2012-12-07 14:50:22 +04:00

11 lines
131 B
Kotlin

// "Import" "true"
// ERROR: Unresolved reference: Some
package testing
import some.Some
fun testing() {
<caret>Some.test()
}