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