mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
21 lines
544 B
Kotlin
21 lines
544 B
Kotlin
package test
|
|
|
|
// See SubclassFromGenericAndNot, as well
|
|
public interface Kt3302 {
|
|
public interface BSONObject {
|
|
public fun put(p0: String, p1: Any): Any?
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface LinkedHashMap<K, V> {
|
|
public fun put(key: K, value: V): V?
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface BasicBSONObject : LinkedHashMap<String, Any>, BSONObject {
|
|
override fun put(key: String, value: Any): Any?
|
|
}
|
|
}
|