1// { dg-do assemble  }
2// Origin: Mark Mitchell <mark@codesourcery.com>
3
4template <int I>
5struct S {
6  struct T* x;
7};
8
9template struct S<2>;
10
11T* t;
12