4

我可以得到以下代码进行编译:

enum E {a, b, c};
void f()
{
    E e;
    std::function<void()> f = [&]() { e = a; };
} 

但不是以下一个:

void f()
{
    enum E {a, b, c};
    E e;
    std::function<void()> f = [&]() { e = a; };
} 

发出以下编译器错误:

1>test.cpp(5): error C2665: '`anonymous-namespace'::<lambda1>::<lambda1>' : none of the 2 overloads could convert all the argument types
1>          test.cpp(5): could be '`anonymous-namespace'::<lambda1>::(f::E &,f::E &)'
1>          while trying to match the argument list '(f::E, f::E)'

该错误是可预期的还是错误?

4

1 回答 1

6

这似乎与http://social.msdn.microsoft.com/Forums/en/vclanguage/thread/88f533d8-b7f5-4416-bdcf-b461aeb74178上的问题相同。在那里,它似乎是编译器中的一个错误。MSVC 似乎对 lambda 中的本地类型有一些问题。另请参阅http://connect.microsoft.com/VisualStudio/feedback/details/675113/lambda-expression-causes-internal-compiler-error#details

5.1.2 Lambda 表达式 [expr.prim.lambda]中没有任何语言可以说明本地定义的类型不能在 lambda 中捕获。

于 2012-08-29T12:11:21.287 回答