Bernd Eggink schrieb:
I noticed that

  typeset -T X_t=(
    typeset a=aha
    typeset b=${_.a}
  )

  X_t x
  print ${x.b}

prints nothing.

This may be a related issue:

  typeset -T X_t=( typeset x=foo )
  typeset -T Y_t=( X_t y )
  Y_t a
  print $a

prints:

  ( X_t y=( x='' ) )

Shouldn't it say x='foo' here?
I also tried some variants, which didn't change anything:

  X_t x1
  print $x1     # ( x=foo )
  Y_t y1=(y=x1)
  print $y1     # ( X_t y=( x='' ) )
  Y_t y2=(y=$x1)
  print $y2     # ( X_t y=( x='' ) )

Regards,
Bernd

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

Reply via email to