why is this an illegal declaration?
> std::views::iota r(0, 10);
error: expected ‘;’ before ‘r’
but this works
> auto r = std::views::iota(0, 10);
why is this an illegal declaration?
> std::views::iota r(0, 10);
error: expected ‘;’ before ‘r’
but this works
> auto r = std::views::iota(0, 10);