OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / defarg12.C
1 // PR c++/35828
2 // { dg-options "-std=c++0x" }
3
4 template < typename > struct A ;
5 template < template < typename > class = A >
6 void test ()
7 {
8         test ();
9 }
10