'new' : cannot allocate 'const'/'volatile' objects (type is 'type')
The new operator is incorrectly used to create a const or volatile object.
Example
void main(void) { new int * const; // error new int * volatile; // error }