aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/054.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/054.sh')
-rw-r--r--tests/054.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/054.sh b/tests/054.sh
deleted file mode 100644
index 4990b89..0000000
--- a/tests/054.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-cat <<'EOF' > expected
-0
-1
-EOF
-test_diff <<'EOF'
-int printf();
-void* calloc();
-
-struct S {
- int a;
- int b;
-};
-
-int main() {
- struct S* s = calloc(1, sizeof(struct S));
- s->b = 1;
- printf("%ld\n", s->a);
- printf("%ld\n", s->b);
- return 0;
-}
-EOF