Hi!

----

The following line should initalise the compound variable "x" and a
member "b" which should be a copy of the compound variable "cpv1":
-- snip --
$ ksh93 -c 'compound cpv1=( integer f=2 ) ; compound x=( integer a=1 ;
compound b=cpv1 ; integer c=3 ) ; print -v x'
-- snip --
... however with ast-ksh.2009-06-22 it only prints:
-- snip --
(
        typeset -l -i a=1
        typeset -l -i c=3
)
-- snip --
... but AFAIK it should print:
-- snip --
(
        typeset -l -i a=1
        typeset -C b=(
                typeset -l -i f=2
        )
        typeset -l -i c=3
)
-- snip --

----

Bye,
Roland

-- 
  __ .  . __
 (o.\ \/ /.o) [email protected]
  \__\/\/__/  MPEG specialist, C&&JAVA&&Sun&&Unix programmer
  /O /==\ O\  TEL +49 641 3992797
 (;O/ \/ \O;)
_______________________________________________
ast-users mailing list
[email protected]
https://mailman.research.att.com/mailman/listinfo/ast-users

Reply via email to