void func()
{
auto v1 = auto(42); // cl.exe compilers, but IntelliSense gives "expected an expression"
auto v2 = auto{ 42 }; // cl.exe compilers, but IntelliSense gives "expected an expression"
}
Bug: IntelliSense reports the error “expected an expression” but it compiles.