7 // no need to call this, it generates compiler error:
8 // error 33: Attempt to assign value to a constant variable (=)
9 char foo(const char* s
)
13 // The value of the constant variable 's' is not modified rather the pointer is incremented for which SDCC seems to throw error.
14 // In reality it was the iTemp for *++s that was considered const but needs to be assigned.