From a60337264c2551fffc2b5aeea12f40a06b7cb0e9 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 17 Feb 2017 10:55:21 +0000 Subject: Working variables finally by adding mutable --- c_parser/test/output.xml | 13 +++++++++++++ c_parser/test/test_parser.c | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 c_parser/test/output.xml (limited to 'c_parser/test') diff --git a/c_parser/test/output.xml b/c_parser/test/output.xml new file mode 100644 index 0000000..852ed49 --- /dev/null +++ b/c_parser/test/output.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/c_parser/test/test_parser.c b/c_parser/test/test_parser.c index a685aff..557fd56 100644 --- a/c_parser/test/test_parser.c +++ b/c_parser/test/test_parser.c @@ -2,4 +2,5 @@ int a; int b; int c; int yann, is, the, best; -int hello = 0; +int d = 0; +int hello = 123, asd = 123; -- cgit