blob: 2350104cb592c88c21965fba718b056be69da92b [file] [log] [blame]
// { dg-do assemble }
template<class E,class F> class D
{
};
template<template<class> class D,class E> class C
{
};
int main()
{
C<D,int> c; // { dg-error "" } param list not match/sees it as not having a type
}