7 /* no need to call this, it generates compiler error:
8 error 33: Attempt to assign value to a constant variable (=)
9 The keyword "const" seems to
10 be attributed to the value pointed to
11 instead of to the pointer itself
13 void should_not_give_error(char * const w
)
19 void does_not_give_error(char * w
)
24 /* this correctly gives error 33, therefore cannot be regression tested
25 void gives_error(const char * w)