Files
kotlin-fork/compiler/testData/cli/metadata/noVirtualFileHiddenForMemberWithPlatformDependentAnnotation.kt
T
Ivan Kochurkin 9a5cc39588 [FIR] Use FirDefaultOverridesBackwardCompatibilityHelper with common metadata compilation
Also, use it with JS compilation

^KT-57735 Fixed
2023-04-06 22:27:24 +02:00

5 lines
157 B
Kotlin
Vendored

expect abstract class ConcurrentMap<Key, Value>(
initialCapacity: Int = 32
) : MutableMap<Key, Value> {
fun remove(key: Key, value: Value): Boolean
}