blob: a8a01a9e31304a1c8b66488d99fedea98b2462f9 [file] [log] [blame]
Richard Smith4440d6e2015-07-19 23:44:27 +00001BEGIN
Richard Smith87bb5692015-06-09 00:35:49 +00002template<typename T = int> struct A {};
3template<typename T> struct B {};
4template<typename T> struct C;
5template<typename T> struct D;
Richard Smithe7bd6de2015-06-10 20:30:23 +00006template<typename T> struct E;
Richard Smith95d83952015-06-10 20:36:34 +00007template<typename T = int> struct G;
8template<typename T = int> struct H;
Richard Smith6dc8ae12015-08-17 20:24:17 +00009template<typename T> struct J {};
10template<typename T = int> struct J;
11struct K : J<> {};
Richard Smith4440d6e2015-07-19 23:44:27 +000012END