#include <functional>
#include <iostream>
namespace{
//const std::function< void( const int ) > foo[] =
const auto foo[] =
{
[]( const int v ){ std::cout<<v<<std::endl; },
[]( const int v ){ std::cout<<v/2<<std::endl; },
[]( const int v ){ std::cout<<v/3<<std::endl; },
};
}
int main()
{
foo[1](5);
}
上面的示例无法编译(使用 g++ 4.6.1)并出现下一条错误消息:
error: unable to deduce 'const std::initializer_list<const auto> []' from '{{}, {}, {}}'
注释行工作正常(不指定函数类型)。
这是 g++ 的怪癖吗?或者标准中有什么东西告诉上面不应该编译?