OSDN Git Service

* treelang/compile/var_defs.tree: Adjust.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / ref2.C
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3
4 template <class T, T&>
5 class C;
6
7 template <int& I>
8 class C<int, I> {};
9
10 int i;
11
12 C<int, i> c;