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