While doing variadic template programming in C++11 on GCC, once in a while I get an error that says \"Sorry, unimplemented: cannot expand \'Identifier...\' into a fixed-leng
What version of GCC are you using? According to this GCC status page, GCC 4.4 should support it.
Testing with GCC 4.4.2, I get similar error.
The wording of the error message seems to imply that the code should work according the C++0x standard, but that GCC doesn't support it yet. Or perhaps it is a compiler bug?
This is correct, GCC understands the code but cannot yet spit out GIMPLE for it.
As for what causes the error, it's the extension of template variable list to another template's list of variables.