commit 84753772d685f95f823893d08742c346d5a6f374
Author: Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Mon Apr 3 08:19:48 2017 +0200
Commit: Roberto E. Vargas Caballero <[email protected]>
CommitDate: Mon Apr 3 08:19:48 2017 +0200
[tests] Add missed 0129-initi.c test
diff --git a/tests/execute/0129-initi.c b/tests/execute/0129-initi.c
new file mode 100644
index 0000000..266e1b0
--- /dev/null
+++ b/tests/execute/0129-initi.c
@@ -0,0 +1,12 @@
+
+struct range {
+ long quant;
+} *a;
+long b;
+
+int
+main()
+{
+ struct range r = a[0];
+ b = r.quant;
+}