diff options
Diffstat (limited to 'shell/hush_test/hush-bugs/var3.tests')
-rwxr-xr-x | shell/hush_test/hush-bugs/var3.tests | 1 |
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 97b102c..0000000 --- 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 |