// FILE: first.before.kt // "class org.jetbrains.kotlin.idea.quickfix.ImportFix" "false" // ERROR: Type 'String' has no method 'getValue(Nothing?, KProperty<*>)' and thus it cannot serve as a delegate // ACTION: To raw string literal package b val x: String by "" // <--- should not propose to auto-import a.getValue, // because that would not fix the error // FILE: second.kt package a import kotlin.reflect.KProperty fun String.getValue(x: Any?, y: KProperty<*>) = ""