template12.C   [plain text]


template <int J>
struct A {
};

struct B {
  template <int I>
  struct C : public A<I> {};

  typedef double I;
};