为什么基于范围的 for 循环中的结构化绑定只是一个副本而不是引用?

Why are structured bindings in range-based for-loop just a copy and not a reference?

我有以下代码:

#include "stdafx.h"
#include <unordered_map>
#include <cassert>
int main()
{
    struct Foo { int a; };
    std::unordered_map<int, Foo> foos{ { 0, { 3 } }, { 1, { 4 } } };
    for (auto &[i, foo] : foos)
    {
        foo.a = 6; //doesn't change foos[i].a
        assert(&foo.a == &foos[i].a); //does not pass
    }

    auto &[i, foo] = *foos.begin();
    foo.a = 7; //changes foo[0].a
    assert(&foo.a == &foos[0].a); //passes
}

我的问题:

为什么第一个断言语句没有通过而第二个断言语句通过了? 为什么我不能在基于范围的 for 循环中更改 foos 映射中 foo 的值?

编译器: MSVS++17 Visual studio 15.3.2

编辑:如果复制粘贴到 visual studio 项目中,代码现在可以编译。

我在VS里发了一个bugreport,现在正在调查中