From d4a96d645c7e60c4b012be99a955b34112639b36 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Sat, 16 Feb 2008 15:40:49 +0000 Subject: [PATCH] sizeof from string is defect [r18879] --- parsetest/cp_error023.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 parsetest/cp_error023.c diff --git a/parsetest/cp_error023.c b/parsetest/cp_error023.c new file mode 100644 index 0000000..393326a --- /dev/null +++ b/parsetest/cp_error023.c @@ -0,0 +1,7 @@ +int main(void) +{ + if(sizeof("-o") != 3) + return 1; + + return 0; +} -- 2.20.1