aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/defarg12.C
blob: 7131501e1c2eb6fa9ea4336c7cec3b31ad702590 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/35828
// { dg-do compile { target c++11 } }

template < typename > struct A ;
template < template < typename > class = A >
void test ()
{
        test ();
}