blob: b8201f416426efa6abf3eb29be625594559e8191 (
plain)
1
2
3
4
5
6
7
8
|
/* The strstr call is expanded to just "s", which should not result in a
warning about discarding qualifiers in an assignment. */
/* { dg-do compile } */
extern char * strstr (const char *s1, const char * s2);
void foo(const char *s){
char * cp;
cp = strstr(s, "");
}
|