0_0_38219319_26674.cpp: In function 'void read(auto:1&& ...)':
0_0_38219319_26674.cpp:9:46: error: expected primary-expression before '...' token
void read(auto &&... args) { ((cin >> args), ...); }
^
0_0_38219319_26674.cpp:9:46: error: expected ')' before '...' token
0_0_38219319_26674.cpp:9:50: error: parameter packs not expanded with '...':
void read(auto &&... args) { ((cin >> args), ...); }
^
0_0_38219319_26674.cpp:9:50: note: 'args'
0_0_38219319_26674.cpp: In function 'void print(auto:2&& ...)':
0_0_38219319_26674.cpp:10:48: error: expected primary-expression before '...' token
void print(auto &&... args) { ((cout << args), ...); }
^
0_0_38219319_26674.cpp:10:48: error: expected ')' before '...' token
0_0_38219319_26674.cpp:10:52: error: parameter packs not expanded with '...':
void print(auto &&... args) { ((cout << args), ...); }
^
0_0_38219319_26674.cpp:10:52: note: 'args'
|