80fda25c58
Added test `FirSourceLazyDeclarationResolveTestGenerated.Classes.testClassDelegatedInCommonCode` now fails with another exception (KT-62772). It's fixed in the following commit. ^KT-62768 fixed
9 lines
215 B
Kotlin
Vendored
9 lines
215 B
Kotlin
Vendored
// 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()
|
|
}
|
|
} |