Files
kotlin-fork/idea/testData/quickfix/autoImports/sameModuleImportPriority.after.kt
T
2021-05-12 16:28:30 +00:00

11 lines
178 B
Kotlin
Vendored

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