aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/082.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/082.sh')
-rw-r--r--tests/082.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/082.sh b/tests/082.sh
deleted file mode 100644
index d1e87d6..0000000
--- a/tests/082.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-cat <<'EOF' > expected
-8
-42
-42
-EOF
-
-test_diff <<'EOF'
-int printf();
-
-union U {
- int i;
- long l;
-};
-
-int main() {
- union U u;
- printf("%zu\n", sizeof(u));
- u.l = 42;
- printf("%d\n", u.i);
- printf("%ld\n", u.l);
-}
-EOF