aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/069.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/069.sh')
-rw-r--r--tests/069.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/069.sh b/tests/069.sh
deleted file mode 100644
index 6be03e5..0000000
--- a/tests/069.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-cat <<'EOF' > expected
-h
-l
-,
-EOF
-
-test_diff <<'EOF'
-int printf();
-
-int main() {
- char* h = " hello,world" + 1;
- printf("%c\n", *h);
- printf("%c\n", h[2]);
- printf("%c\n", *(h + 5));
-}
-EOF