I have the following Java code:
public class WeirdList { /** The empty sequence of integers. */ /*ERROR LINE */ public static final WeirdList EMPTY =
You would need to add a no-arg constructor to WeirdList explicitly as EmptyList has a default no-arg constructor but it has no constructor in the superclass that it can call.