cc65/test/err/bug2286-param-qualifier.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 */