mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-24 00:21:34 +00:00
13 lines
152 B
Java
Vendored
13 lines
152 B
Java
Vendored
package test;
|
|
|
|
public interface DeepSamLoop {
|
|
|
|
interface Foo {
|
|
void foo(Bar p);
|
|
}
|
|
|
|
interface Bar {
|
|
void foo(Foo p);
|
|
}
|
|
}
|