aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/092.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/092.sh')
-rw-r--r--tests/092.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/092.sh b/tests/092.sh
deleted file mode 100644
index 20c3a1f..0000000
--- a/tests/092.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-cat <<'EOF' > expected
-42 123 999
-EOF
-
-test_diff <<'EOF'
-int printf();
-
-char a = 42;
-short b = 123;
-int c = 999;
-
-int main() {
- printf("%d %d %d\n", a, b, c);
-}
-EOF