http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50303
Paolo Carlini <paolo.carlini at oracle dot com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2011-09-14 CC| |jason at gcc dot gnu.org Ever Confirmed|0 |1 --- Comment #4 from Paolo Carlini <paolo.carlini at oracle dot com> 2011-09-14 23:11:11 UTC --- Ah, ok, the below seems enough: template<typename Interface> struct A1 { }; template<template<class I> class... Actions> void g2() { g2<Actions...>(); } int main() { g2<A1>(); }