mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
157 B
Java
8 lines
157 B
Java
import java.util.Set;
|
|
import java.util.List;
|
|
|
|
public interface Example <A> extends Set<List<A>> {
|
|
public interface InnerExample extends Example<Set> {
|
|
}
|
|
}
|