From dd95046b3d6bb6603529e20f2d15b14fe4144a94 Mon Sep 17 00:00:00 2001 From: François Pottier Date: Fri, 23 Oct 2015 13:45:27 +0200 Subject: Added some handwritten .c files in tests/handwritten/. --- cparser/tests/handwritten/variable-type-confusion.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 cparser/tests/handwritten/variable-type-confusion.c (limited to 'cparser/tests/handwritten/variable-type-confusion.c') diff --git a/cparser/tests/handwritten/variable-type-confusion.c b/cparser/tests/handwritten/variable-type-confusion.c new file mode 100644 index 00000000..0957ca9d --- /dev/null +++ b/cparser/tests/handwritten/variable-type-confusion.c @@ -0,0 +1,6 @@ +typedef int t; +typedef int u; +int f (void) { + t = 3; +} + -- cgit