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);
|
|
}
|
|
}
|