mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
17 lines
287 B
Java
Vendored
17 lines
287 B
Java
Vendored
package test;
|
|
|
|
import java.util.*;
|
|
|
|
public interface MutableToReadOnly {
|
|
|
|
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);
|
|
}
|
|
}
|