Following gives error as expected:
int* const const p = new int; // g++ error: duplicate cv-qualifier
But below doesn't give any error, even though it's equivalent to above one:
typedef int* const intp_const;
intp_const const p = new int; // ok !
// ^^^^^ duplicate ?
Why does compiler ignores the extra const ?
[Note: intp_const const is not same as const char* const, because *p = <value>; is possible.]

typedef, the extraconstis NOT ignored (the 1st line). – iammilind Jul 23 '12 at 3:16constan error in the first line?" – curiousguy Jul 23 '12 at 5:59