blob: 4b58f0b0a200a03a849f895c03f3a55c797b396d [file]
// 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()
}
}