public class TestI<X> implements Test<X> {
  private X x;
  public X get() { return x; }
  public void set(X x) { this.x = x; }
}
