mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-13 00:30:32 +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 {
|
|
|
|
}
|
|
|
|
} |