blob: ada25b3c0dcd1c619ede35ff63a875cd5747bde9 [file] [log] [blame]
// PR c++/47226
// { dg-do compile { target c++11 } }
void slurp(...) { }
template<int ...N>
void print() {
slurp([]() -> int {
(void) N; // or something fancy...
return 0;
}() ...);
}