При следующем коде:
Код: Выделить всё
int test(int input) {
auto f(int) -> int;
return f(input);
}
Подробнее здесь: https://stackoverflow.com/questions/786 ... ted-result
Код: Выделить всё
int test(int input) {
auto f(int) -> int;
return f(input);
}