[FIR2IR] Allow symbolTable cache lookups for generated Any methods

^KT-61972 Fixed
This commit is contained in:
Dmitriy Novozhilov
2023-09-15 16:06:29 +03:00
committed by Space Team
parent afbfc9ce8e
commit 9a6c6a40a9
20 changed files with 124 additions and 4 deletions
@@ -0,0 +1,12 @@
// LANGUAGE: +MultiPlatformProjects
// ISSUE: KT-61972
// IGNORE_BACKEND_K1: JS, JS_IR, JS_IR_ES6, WASM, NATIVE
// MODULE: common
// FILE: common.kt
data class CommonData(val value: String)
// MODULE: main()()(common)
// FILE: test.kt
data class PlatformData(val commonData: CommonData)
fun box() = "OK"