view gcc/testsuite/gcc.dg/builtin-strstr.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* 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, "");
}