import java.util.List; abstract class X { abstract void copy(List dest, List src); void foo(List x, List y){ copy(x, y); } }