#include <iostream> using namespace std; void f(auto fp() -> int) { } int main() { // your code goes here return 0; }
Standard input is empty
prog.cpp:4:21: error: 'fp' function with trailing return type not declared with 'auto' type specifier
void f(auto fp() -> int)
^
Standard output is empty