summaryrefslogtreecommitdiffhomepage
path: root/shell/hush_test/hush-bugs/env_and_func.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-bugs/env_and_func.tests')
-rwxr-xr-xshell/hush_test/hush-bugs/env_and_func.tests6
1 files changed, 0 insertions, 6 deletions
diff --git a/shell/hush_test/hush-bugs/env_and_func.tests b/shell/hush_test/hush-bugs/env_and_func.tests
deleted file mode 100755
index d62c1af40..000000000
--- a/shell/hush_test/hush-bugs/env_and_func.tests
+++ /dev/null
@@ -1,6 +0,0 @@
-# UNFIXED BUG
-
-var=old
-f() { echo "var=$var"; }
-var=val f
-echo "var=$var"