mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-03 00:21:31 +00:00
11 lines
166 B
Java
11 lines
166 B
Java
package test;
|
|
|
|
public class PrivateSamAdapter {
|
|
private void samAdapter(SamInterface r) {
|
|
}
|
|
|
|
private interface SamInterface {
|
|
void foo();
|
|
}
|
|
}
|