9 lines
208 B
Kotlin
Vendored
9 lines
208 B
Kotlin
Vendored
// p1.TypeHierarchyMap
|
|
package p1
|
|
|
|
class TypeHierarchyMap<TValue> : Map<Class<*>, TValue> {
|
|
override fun containsKey(key: Class<*>): Boolean {
|
|
TODO("not implemented")
|
|
}
|
|
}
|
|
// COMPILATION_ERRORS |