OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / ttp27.C
1 // PR c++/35678
2
3 template<typename T, T> struct A;
4 template<typename> struct B; 
5 template<template<typename T, T> class U> struct B<U<char, 'h'> > {};
6 B<A<char,'h'> > x;