package test; import java.util.ArrayList; abstract class ListImpl extends ArrayList { public abstract int func(); }