blob: 97c0065328f16b37f8383203e8e73687c6d92d7e [file] [log] [blame]
// { dg-options "-std=c++0x" }
template<template<int> class... T> struct A
{
void foo(T<0>); // { dg-error "not expanded|T" }
void bar(T<0>); // { dg-error "not expanded|T" }
};