svoid test_subList_optimization() {
  L l = ll("a", "b");
  assertSame(l, subList(l, 0, 2));
  assertSame(l, subList(l, -1, 3));
}