summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/ref2.C
blob: 912a7721f5c897df814f05531e81e41ff7aac6db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T, T&>
class C;

template <int& I>
class C<int, I> {};

int i;

C<int, i> c;