prog.cpp: In instantiation of 'void Second(intrgs&& ...) [with intrgs = {int}]':
prog.cpp:14:22: required from here
prog.cpp:9:8: error: cannot bind 'int' lvalue to 'int&&'
Third(args...);
^
prog.cpp:3:6: note: initializing argument 1 of 'void Third(int&&)'
void Third (int&& a)
^