import java.util.*; class Foo { void f(ArrayList t) {} void f(List t) {} } class User { void foo (Foo foo) { foo.f(new ArrayList()); } }