Soemthing goes wrong with this little script:

        typeset -T A_t=(
            typeset name
        )

        A_t x=(name="xxx")
        print "x = $x"

It prints:

        x = (
                typeset name
                typeset name
        )

However, if name is initialized,

        typeset -T A_t=(
            typeset name="foo"
        )

        A_t x=(name="xxx")
        print "x = $x"

the output is correct:

        x = (
                name=xxx
        )

Regards,
Bernd

--
Bernd Eggink
http://sudrala.de
_______________________________________________
ast-developers mailing list
[email protected]
https://mailman.research.att.com/mailman/listinfo/ast-developers

Reply via email to