From 0a0acb55db8d7c4dec445573f1b0528d126b9e1f Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 18 Apr 2015 19:36:38 +0200 Subject: ash: fix handling of duplicate "local" Signed-off-by: Denys Vlasenko --- shell/ash_test/ash-vars/var3.tests | 1 + 1 file changed, 1 insertion(+) create mode 100755 shell/ash_test/ash-vars/var3.tests (limited to 'shell/ash_test/ash-vars/var3.tests') diff --git a/shell/ash_test/ash-vars/var3.tests b/shell/ash_test/ash-vars/var3.tests new file mode 100755 index 000000000..97b102cbe --- /dev/null +++ b/shell/ash_test/ash-vars/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 -- cgit v1.2.3