mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
18 lines
329 B
Java
Vendored
18 lines
329 B
Java
Vendored
package test;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
import java.util.*;
|
|
|
|
public interface ReadOnlyToMutable {
|
|
|
|
public interface Super {
|
|
void foo(List<String> p);
|
|
|
|
void dummy(); // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
void foo(List<String> p);
|
|
}
|
|
}
|