Tracey Yoshima
12/30/2022, 8:41 PMval a: Int = 0
resolves Int
, but val l = listOf(1, 2, 3)
results in an unresolved name.
How does the Kotlin compiler resolve default imports like kotlin.collections.*
?dmitriy.novozhilov
12/30/2022, 9:02 PMkotlin.*
, kotlin.collections.*
, kotlin.annotations.*
and some moreTracey Yoshima
12/30/2022, 9:17 PMephemient
12/30/2022, 9:49 PM