aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/022.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/022.sh')
-rw-r--r--tests/022.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/022.sh b/tests/022.sh
deleted file mode 100644
index 93efe9b..0000000
--- a/tests/022.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-cat <<'EOF' > expected
-42 42
-EOF
-test_diff <<'EOF'
-int printf();
-
-int main() {
- int x;
- int* y;
- y = &x;
- *y = 42;
- printf("%d %d\n", x, *y);
- return 0;
-}
-EOF