[FIR2IR] Fix interpreting constants from const properties from other module

This commit is contained in:
Dmitriy Novozhilov
2021-03-01 15:28:24 +03:00
committed by TeamCityServer
parent a7e6667648
commit 245bc7c8e2
10 changed files with 73 additions and 2 deletions
@@ -0,0 +1,25 @@
// MODULE: lib
// FILE: Typography.kt
object Typography {
const val ellipsis: Char = 'O'
}
// MODULE: main(lib)
// FILE: main.kt
class A {
private companion object {
fun String.orEllipsis(): String {
return ellipsis
}
const val ellipsis = "${Typography.ellipsis}"
}
object B {
fun box() = "".orEllipsis()
}
}
fun box(): String {
return A.B.box() + "K"
}