summaryrefslogtreecommitdiff
path: root/regress/gnu/egcs/gcc-bounds/snprintf-4.cpp
blob: 6ef6fdea62b9b3cf7717248fb7de514f1bdbff52 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main(int argc, char **argv) {
	char *buf;
	char buf2[10];
	snprintf(buf2, -sizeof(buf) + 100, "%s", "foo");
	return 1;
}