[Analysis API] fix common code resolution which requires FirSyntheticPropertiesStorage

Added test `FirSourceLazyDeclarationResolveTestGenerated.Classes.testClassDelegatedInCommonCode`
now fails with another exception (KT-62772). It's fixed in the following commit.

^KT-62768 fixed
This commit is contained in:
Ilya Kirillov
2023-10-20 12:29:01 +02:00
committed by Space Team
parent 0325ffaa01
commit 80fda25c58
5 changed files with 234 additions and 10 deletions
@@ -0,0 +1,9 @@
// TARGET_PLATFORM: Common
public class A<caret>A(
private val content: Map<String, Int>
) : Map<String, Int> by content {
override fun toString(): String {
return content.entries.toString()
}
}