blob: 19265c51c32cf40b9a70a4cc00e4a330c7d0338b [file] [log] [blame]
// RUN: test.sh -e -t %t %s
#include <string.h>
// strcpy() with object overlap.
int main()
{
char obj[5] = "1234";
strcpy(&obj[1], &obj[0]);
return 0;
}