[FIR] Lookup in local sources in default imports based on the flag

Reuse ALLOW_KOTLIN_PACKAGE for that
This commit is contained in:
Andrey Zinovyev
2021-06-07 13:45:50 +03:00
committed by Space
parent 3eeddf7077
commit 3572a96bb9
9 changed files with 19 additions and 8 deletions
@@ -1,4 +1,5 @@
// !LANGUAGE: +InlineClasses
// ALLOW_KOTLIN_PACKAGE
// FILE: uint.kt
@@ -8,9 +9,6 @@ inline class UInt(val value: Int)
// FILE: test.kt
//this import in required in FIR because default imports don't search in local sources atm
import kotlin.UInt
const val u = UInt(14)
fun foo() {