Opened 10 years ago

Last modified 10 years ago

#3247 closed defect

Missing redeclare class modification — at Initial Version

Reported by: Adrian Pop Owned by: somebody
Priority: high Milestone: 1.9.3
Component: Frontend Version: trunk
Keywords: Cc:

Description

Discussion on this here: m:#1685.

When flattening A.C:

package A
  model B
    model B2
        replaceable type P = Real;
        P p;
    end B2;
    B2 b2;
  end B;

  model C
    extends B(B2(redeclare type P = Integer));
    B2.P p;
  end C;  
end A;
class A.C
  Integer b2.p;
  Real p;
end A.C;

Change History (0)

Note: See TracTickets for help on using tickets.