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