mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
5 lines
176 B
C
5 lines
176 B
C
/* Bug #2286 - Qualifiers of pointees of function parameters ignored for type compatibility check */
|
|
|
|
void woo(int* p);
|
|
void woo(const int* p); /* WRONG: Should be an error */
|