[LL] Don't filter out metadata declaration from stub symbol provider
Now the stub-based symbol provider is reused for common source sets, which use metadata dependencies. Filtering should be done on scope level, then declaration provider won't yield them in the first place. KT-58769
This commit is contained in:
committed by
teamcity
parent
71b29f0cd7
commit
9b82ff7a8d
@@ -5,10 +5,10 @@
|
||||
// FILE: common.kt
|
||||
// TARGET_PLATFORM: Common
|
||||
|
||||
import kotlin.collections.<!UNRESOLVED_IMPORT!>listOf<!>
|
||||
import kotlin.collections.listOf
|
||||
|
||||
fun common() {
|
||||
<!UNRESOLVED_REFERENCE!>listOf<!>("foo", "bar").map { <!UNRESOLVED_REFERENCE!>it<!> }
|
||||
listOf("foo", "bar").map { it }
|
||||
}
|
||||
|
||||
// MODULE: jvm
|
||||
|
||||
Reference in New Issue
Block a user