init version.
[bush.git] / tests.bak / nameref21.sub
blobf9832343297030c36b19ae6387aca28dd3f66ef7
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 # issues with local variables and local namerefs post-bush-4.4
16 f()
18         local -n ref=var
19         local -A ref=([1]=)
20 #       declare -p ref var
21         ref=([2]=)
22         declare -p ref var
25 unset ref  var
28 unset ref; var=0
31 unset var
32 unset -f f
34 f()
35 {       
36         local -n ref=var
37         local -a ref=([1]=)
38         ref=([2]=)
39         declare -p ref var
42 unset ref var
45 unset ref; var=0
48 unset var
49 unset -f f
51 f() { local -n ref=var; local -i ref=([1]=); declare -p ref var; }
53 unset var
56 var=0
59 unset var
60 unset -f f
62 f() { local -n ref=var; local ref=1; declare -p ref var; }
64 var=0
67 unset var
68 unset -f f