http://d.puremagic.com/issues/show_bug.cgi?id=533
------- Comment #1 from wbaxter at gmail.com  2006-11-26 19:43 -------
As of DMD 0.175 this can also be worked around by eliminating the N, and
indexing directly with TList[0]:
  template Nth(TList...) {
      auto Nth = TList[TList[0]];
  }
--