1template <typename DisjointSet>
2struct test_disjoint_set {
3  static void do_test()
4  {
5    unsigned int elts[]
6        = { 0, 1, 2, 3 };
7    const int N = sizeof(elts)/sizeof(*elts);
8  }
9};
10