From accdc53a816eaec50e519c4f3ff6dd589a3c394e Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Thu, 7 Aug 2008 11:14:48 +0000 Subject: [PATCH] errro42 [r21031] --- parsetest/cp_error042.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 parsetest/cp_error042.c diff --git a/parsetest/cp_error042.c b/parsetest/cp_error042.c new file mode 100644 index 0000000..366c1ec --- /dev/null +++ b/parsetest/cp_error042.c @@ -0,0 +1,12 @@ +static int f(void); + +int f(void) { + return 42; +} + +static int f(void); + +int main(void) +{ + return f() != 42; +} -- 2.20.1