Type: LanguageService
To Reproduce
Try to use structured bindings in gcc/clang mode on Windows
void f()
{
std::map<std::string, std::string> m;
for (auto [key, value] : m)
{
std::cout << key << value << std::endl;
}
}

This works fine with gcc/clang mode on Linux so it could just be a config issue.