about summary refs log tree commit diff
path: root/Test/B02typeset.ztst
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2012-08-16 14:00:11 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2012-08-16 14:00:11 +0000
commit268e56a1446af3ca6df84789180b87ac4f57d1d3 (patch)
tree57ea3541a19ae7007b910d391bc4a1af6d9d53af /Test/B02typeset.ztst
parent1849668c81919808b206550fd176b203e67026db (diff)
downloadzsh-268e56a1446af3ca6df84789180b87ac4f57d1d3.tar.gz
zsh-268e56a1446af3ca6df84789180b87ac4f57d1d3.tar.xz
zsh-268e56a1446af3ca6df84789180b87ac4f57d1d3.zip
30169: repeat "typeset -T" with same two first arguments is not an error
Diffstat (limited to 'Test/B02typeset.ztst')
-rw-r--r--Test/B02typeset.ztst9
1 files changed, 9 insertions, 0 deletions
diff --git a/Test/B02typeset.ztst b/Test/B02typeset.ztst
index 7a9928abe..51ebc6535 100644
--- a/Test/B02typeset.ztst
+++ b/Test/B02typeset.ztst
@@ -459,3 +459,12 @@
  silent2(){ local silence; silent1; }
  silent2
 0:typeset -g should be silent even without TYPESET_SILENT
+
+ typeset -T TIED_SCALAR tied_array
+ TIED_SCALAR=foo:bar
+ print $tied_array
+ typeset -T TIED_SCALAR=goo:car tied_array
+ print $tied_array
+0:retying arrays to same array works
+>foo bar
+>goo car