blob: 727ad790828df172a2d5c23fec10ab7f50f5f706 [file] [log] [blame]
// PR c++/65071
// { dg-do compile { target c++11 } }
template<int> struct S {};
template<template<int> class... T, int N>
S<sizeof...(T)> foo(T<N>...);
auto x = foo(S<2>{});