aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/ttp54.C
blob: a789e934ef1e65d5b6b4c43fa7e26263b693a904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do assemble  }

// Reported by Bruce Eckel <Bruce@EckelObjects.com>

// [temp.deduct.type]
// Make sure we treat <T> in the construct TT<T> as any type containing T.

template <class T> class C
{
};

template <class T, template <class> class TT> void f (TT<T *> &t)
{
}

int main ()
{
       C<char *> c;
       f(c);
}