Files
kotlin/compiler/testData/loadJava/compiledJava/sam/adapters/PrivateSamAdapter.txt
2017-05-05 21:30:35 +03:00

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
}
}