From 1d943da0cf9154e7ce78ce867cdbb91531c5d78e Mon Sep 17 00:00:00 2001 From: Matthew Sotoudeh Date: Tue, 25 Jul 2023 14:58:33 -0700 Subject: initial dietc commit --- tests/local_const_array.c | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tests/local_const_array.c (limited to 'tests/local_const_array.c') diff --git a/tests/local_const_array.c b/tests/local_const_array.c new file mode 100644 index 0000000..38de887 --- /dev/null +++ b/tests/local_const_array.c @@ -0,0 +1,4 @@ +int lookup_arr(int i) { + int arr[1] = {1}; + return arr[i]; +} -- cgit v1.2.3