On Thursday, 26 June 2014 at 10:38:54 UTC, bearophile wrote: > // pointer type > auto* p1 = new int(3); // int* > const* p2 = new int(3); // const(int)* Won't some people, especially those coming from C++, mistake this for being syntax to create a constant pointer to a mutable int?