diff options
author | Denys Vlasenko | 2015-04-18 19:38:13 +0200 |
---|---|---|
committer | Denys Vlasenko | 2015-04-18 19:38:13 +0200 |
commit | 73327a048b112ba2b742b758bb5a3caf95c7bf1a (patch) | |
tree | 5194c3fef6517a192ac5e0988f2550675a1f114c /shell/hush_test/hush-bugs/var3.tests | |
parent | 0a0acb55db8d7c4dec445573f1b0528d126b9e1f (diff) | |
download | busybox-73327a048b112ba2b742b758bb5a3caf95c7bf1a.zip busybox-73327a048b112ba2b742b758bb5a3caf95c7bf1a.tar.gz |
hush: document buggy handling of duplicate "local"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-bugs/var3.tests')
-rwxr-xr-x | shell/hush_test/hush-bugs/var3.tests | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/hush_test/hush-bugs/var3.tests b/shell/hush_test/hush-bugs/var3.tests new file mode 100755 index 0000000..97b102c --- /dev/null +++ b/shell/hush_test/hush-bugs/var3.tests @@ -0,0 +1 @@ +x=0; f() { local x=1; echo $x; local x; echo $x; unset x; echo $x; local x; echo $x; }; f; echo $x |