#include <functional>
struct T {
explicit operator bool() { return true; }
};
int main() {
T t;
if(t) {} // OK
auto l = [&]() {
if (t) {} // Error
};
}
MSVC 的行为在这里似乎奇怪地不一致。OK 行和 Error 行之间的唯一区别是一个在 lambda 中。这是一个错误吗?