aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/pr36513-2.c
blob: 3c12e1ae89e59bd96081f286de00cfbc64151e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR 36513: -Wlogical-op warns about strchr */
/* { dg-do compile } */
/* { dg-options "-Wlogical-op" } */
#ifdef __cplusplus
#include <cstring>
#else 
#include <string.h>
#endif
int main2 ()
{
  char *s, t;
  strchr (s, t);
}