summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/defarg12.C
blob: d11848af22867d79e92dff07ae2da14856008a68 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/35828
// { dg-options "-std=c++0x" }

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