package covbug;
import java.util.List;

public abstract class SuperA<T> {
	public abstract SuperB<T> getSomeB(SuperB<T> b);
}