This is allowed:
int a[]{1, 2, 3};
But not this:
auto a = new int[]{1, 2, 3};
You have to specify the bou
As Jonathan Wakely already pointed out in the comments, this is in fact a closed issue. The resolution "should be handled in Evolution Work Group" essentially means WG21 thinks it's not a bad idea per se, but at the same time they don't consider it a defect in the current standard. Which makes sense - there's no hint somewhere that is should work, it's just by analogy.