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