Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
collections
/
kt41123.kt
blob: 817a4ad992fd2bf828f0929ef18b8e72e3c063c9 [
file
]
// IGNORE_BACKEND: WASM
// DONT_TARGET_EXACT_BACKEND: NATIVE
// WASM_MUTE_REASON: STDLIB_COLLECTION_INHERITANCE
// WITH_STDLIB
open
class
A
:
HashMap
<
String
,
String
>()
fun box
():
String
{
val a
=
object
:
A
()
{}
a
[
"OK"
]
=
"OK"
return
a
[
"OK"
]!!
}