view gcc/testsuite/g++.dg/template/defarg11.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do compile }

// We used to reject this code as the extension
// for default arguments being accepted as less the
// needed template arguments.


template<typename> struct match { }; 
 
template<template<typename> class t,typename T>  
struct match<t<T> > { typedef int type; }; 
 
template<template<typename,typename> class t,typename T0,typename T1> 
struct match<t<T0,T1> > { typedef int type; }; 
 
template<typename,typename =void> struct other { }; 
 
typedef match<other<void,void> >::type type;