[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / ttp14.C
blob2b216090be3d091c21f796f15d54bb87615bbde1
1 // { dg-do compile }
3 // Origin: akim@epita.fr
4 //         Volker Reichelt <reichelt@gcc.gnu.org>
6 // PR c++/18276: Template substitution of template template parameter
8 template<template<int> class> struct A;
10 template<int> struct B
12     template<template<int> class> friend class A;
15 B<0> b;