mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
14 lines
181 B
Java
14 lines
181 B
Java
import java.util.List;
|
|
import java.util.AbstractList;
|
|
|
|
class Foo {
|
|
|
|
interface ListImpl extends List {
|
|
|
|
}
|
|
|
|
abstract static class AbstractListImpl extends AbstractList {
|
|
|
|
}
|
|
|
|
} |