forked from mirrors/gecko-dev
MozReview-Commit-ID: IWxzKfWNIHG --HG-- extra : rebase_source : d2bd65c66541e5d6e8d5cc721b117f0a3e7716e8
7 lines
86 B
C++
7 lines
86 B
C++
#include <string.h>
|
|
void test() {
|
|
char x[4];
|
|
char *y = "abcd";
|
|
|
|
strcpy(x, y);
|
|
}
|