mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
6 lines
198 B
Kotlin
Vendored
6 lines
198 B
Kotlin
Vendored
// WITH_SIGNATURES
|
|
|
|
class StringStringMap : MutableMap<String, String> by HashMap<String, String>()
|
|
|
|
abstract class AbstractStringStringMap : MutableMap<String, String> by HashMap<String, String>()
|