为什么以下编译失败? 编译器是否可以从输入中推断出返回类型?
不要完全遵循显示的类型转换错误。
auto func(auto &x)
{
return x[0];
}
int main()
{
vector<int> v = { 1, 2, 3};
(void)func(v);
}
$ g++ -std=c++1z auto.cc
auto.cc: In instantiation of ‘auto func(auto:1&) [with auto:1 = std::vector<int>]’:
auto.cc:15:16: required from here
auto.cc:8:14: error: could not convert ‘(& x)->std::vector<_Tp, _Alloc>::operator[]<int, std::allocator<int> >(0ul)’ from ‘__gnu_cxx::__alloc_traits<std::allocator<int> >::value_type {aka int}’ to ‘std::vector<int>’
return x[0];