From 933a5e269b801163de7f6cf6ea16ccf5001dc6b4 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Tue, 12 Aug 2008 11:17:27 +0000 Subject: [PATCH] error46 [r21116] --- parsetest/cp_error046.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 parsetest/cp_error046.c diff --git a/parsetest/cp_error046.c b/parsetest/cp_error046.c new file mode 100644 index 0000000..d19d813 --- /dev/null +++ b/parsetest/cp_error046.c @@ -0,0 +1,13 @@ +static const struct { + unsigned int width; + unsigned int height; + unsigned int bytes_per_pixel; + unsigned char pixel_data[1 * 1 * 4 + 1]; +} ICON = { + 1, 1, 4, "\0\0\0\0\0" +}; + +int main(void) +{ + return ICON.width - 1; +} -- 2.20.1