mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
15 lines
277 B
Java
Vendored
15 lines
277 B
Java
Vendored
package test;
|
|
|
|
import java.io.Closeable;
|
|
|
|
public interface InheritedAndOverriddenAmbiguousAdapters {
|
|
public interface Super {
|
|
void foo(Runnable r);
|
|
void foo(Closeable r);
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
void foo(Runnable r);
|
|
}
|
|
}
|