Files
kotlin-fork/idea/testData/quickfix/autoImports/sameModuleImportPriority.after.kt
T
2014-09-11 21:04:27 +04:00

10 lines
161 B
Kotlin
Vendored

// "Import" "true"
// ERROR: Unresolved reference: Delegates
// WITH_RUNTIME
package testing
import some.Delegates
fun foo() {
val d = <caret>Delegates()
}