mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
11 lines
281 B
Plaintext
Vendored
11 lines
281 B
Plaintext
Vendored
package test
|
|
|
|
public open class PrivateSamAdapter {
|
|
public constructor PrivateSamAdapter()
|
|
private open fun samAdapter(/*0*/ p0: test.PrivateSamAdapter.SamInterface!): kotlin.Unit
|
|
|
|
private interface SamInterface {
|
|
public abstract fun foo(): kotlin.Unit
|
|
}
|
|
}
|