blob: f561912d21a9369cc55a9af45d369bd833cb7f57 [file] [log] [blame]
Daniel Dunbar9c321102009-01-20 23:17:32 +00001// RUN: clang -analyze -checker-simple -verify %s
Ted Kremenek440c9552008-04-30 04:40:48 +00002//
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}