Changes between Initial Version and Version 2 of Ticket #1405


Ignore:
Timestamp:
2012-08-30T10:42:21Z (12 years ago)
Author:
Martin Sjölund
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1405

    • Property Cc peter.aronsson@… added
  • Ticket #1405 – Description

    initial v2  
    11An array of a type which is defined as an array itself gets wrong dimensions. For example,
    2 {{{type B = Real[2];
     2{{{
     3type B = Real[2];
    34class A
    45B[3] z;
    5 end A;}}}
     6end A;
     7}}}
    68
    79produces
    8 {{{class A
     10{{{
     11class A
    912  Real z[1];
    1013  Real z[2];
    11 end A;}}}
     14end A;
     15}}}