aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/ttp27.C
blob: f693690852be27fe8bef240d236d4a480080fadc (plain)
1
2
3
4
5
6
// PR c++/35678

template<typename T, T> struct A;
template<typename> struct B; 
template<template<typename T, T> class U> struct B<U<char, 'h'> > {};
B<A<char,'h'> > x;