package test; public interface OverrideWithErasedParameter { public interface Super { void foo(T t); } public interface Sub extends Super { void foo(Object o); } }