e693820fb4
#KT-1613 Fixed #KT-4192 Fixed Enable auto-import fix for "unresolved reference with wrong receiver" diagnostic
10 lines
109 B
Kotlin
10 lines
109 B
Kotlin
// "Import" "true"
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
import util.foo
|
|
|
|
trait H
|
|
|
|
fun f(h: H) {
|
|
h foo h
|
|
} |