aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-bugs/var3.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-bugs/var3.tests')
-rwxr-xr-xshell/hush_test/hush-bugs/var3.tests1
1 files changed, 0 insertions, 1 deletions
diff --git a/shell/hush_test/hush-bugs/var3.tests b/shell/hush_test/hush-bugs/var3.tests
deleted file mode 100755
index 97b102cbe..000000000
--- a/shell/hush_test/hush-bugs/var3.tests
+++ /dev/null
@@ -1 +0,0 @@
-x=0; f() { local x=1; echo $x; local x; echo $x; unset x; echo $x; local x; echo $x; }; f; echo $x