mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
15 lines
517 B
Plaintext
15 lines
517 B
Plaintext
package test
|
|
|
|
public open class PrivateSamAdapter {
|
|
public constructor PrivateSamAdapter()
|
|
private final /*synthesized*/ fun samAdapter(/*0*/ p0: (() -> kotlin.Unit)!): kotlin.Unit
|
|
private open fun samAdapter(/*0*/ p0: test.PrivateSamAdapter.SamInterface!): kotlin.Unit
|
|
|
|
private trait SamInterface {
|
|
public abstract fun foo(): kotlin.Unit
|
|
}
|
|
|
|
// Static members
|
|
private final /*synthesized*/ fun SamInterface(/*0*/ function: () -> kotlin.Unit): test.PrivateSamAdapter.SamInterface
|
|
}
|