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