mirror of
https://github.com/cc65/cc65.git
synced 2024-11-17 09:07:32 +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 */
|