aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/structs.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/structs.sh b/tests/structs.sh
index 4c8ff6d..3df4f9c 100644
--- a/tests/structs.sh
+++ b/tests/structs.sh
@@ -362,3 +362,28 @@ int main() {
printf("%zu\n", sizeof(E));
}
EOF
+
+cat <<'EOF' > expected
+EOF
+
+test_diff <<'EOF'
+int printf();
+
+struct S1 {
+ struct {
+ int x;
+ int y;
+ };
+ struct {
+ int z;
+ };
+};
+
+int main() {
+ // TODO
+ // struct S1 a = {1, 2, 3};
+ // printf("%d\n", a.x);
+ // printf("%d\n", a.y);
+ // printf("%d\n", a.z);
+}
+EOF