C1417: Const/volatile not allowed for type of new operator

[ERROR]

Description

The new operator can only create non const and non volatile objects.

Example
  void main() {

  
    int *a;

  
    typedef const int I;

  
    a=new I;  // error

  
  }

  
Tips

Do not use const/volatile qualifiers for the type given to the new operator.