mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
20 lines
719 B
Plaintext
Vendored
20 lines
719 B
Plaintext
Vendored
package test
|
|
|
|
public interface Kt3302 {
|
|
|
|
public interface BSONObject {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun put(/*0*/ p0: kotlin.String, /*1*/ p1: kotlin.Any): kotlin.Any?
|
|
}
|
|
|
|
public interface BasicBSONObject : test.Kt3302.LinkedHashMap<kotlin.String, kotlin.Any>, test.Kt3302.BSONObject {
|
|
public abstract override /*2*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
|
public abstract override /*2*/ fun put(/*0*/ key: kotlin.String, /*1*/ value: kotlin.Any): kotlin.Any?
|
|
}
|
|
|
|
public interface LinkedHashMap</*0*/ K, /*1*/ V> {
|
|
public abstract fun dummy(): kotlin.Unit
|
|
public abstract fun put(/*0*/ key: K, /*1*/ value: V): V?
|
|
}
|
|
}
|