aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/087.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/087.sh')
-rw-r--r--tests/087.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/087.sh b/tests/087.sh
deleted file mode 100644
index 57e7612..0000000
--- a/tests/087.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-cat <<'EOF' > expected
-0
-1
-2
-3
-4
-5
-6
-7
-8
-9
-EOF
-
-test_diff <<'EOF'
-int printf();
-
-int main() {
- for (int i = 0; i < 10; i++) {
- printf("%d\n", i);
- }
-}
-EOF