On some very old code base, we have this kind of statement:
delete [i+4] v;
Where v
is indeed an array and i
is an integer.
This code is in VS2010 but still compiles in VS2019. Working demo
What's the meaning of this? Is it, or was it something specific to Microsoft C++?