blob: 1b00971a834cf7c078cc031193b7b25a0ce49a1c [file] [log] [blame]
Artem Dergachev0b5b1f12017-11-07 10:51:15 +00001// RUN: %clang_analyze_cc1 -Wno-incompatible-library-redeclaration -analyzer-checker=core,unix.cstring,alpha.unix.cstring -verify %s
2
3// expected-no-diagnostics
4
5void *strcpy(unsigned char *, unsigned char *);
6
7unsigned char a, b;
8void testUnsignedStrcpy() {
9 strcpy(&a, &b);
10}