exercise-ps.c revision d427023c334fe03105d9359711a3df4d6f23b344
1// RUN: clang -analyze -checker-simple -verify %s
2//
3// Just exercise the analyzer (no assertions).
4
5
6static const char * f1(const char *x, char *y) {
7  while (*x != 0) {
8    *y++ = *x++;
9  }
10}
11