#3247 closed defect (fixed)
Missing redeclare class modification
Reported by: | Adrian Pop | Owned by: | Adrian Pop |
---|---|---|---|
Priority: | high | Milestone: | 1.9.3 |
Component: | Frontend | Version: | trunk |
Keywords: | Cc: |
Description (last modified by )
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;
we get:
class A.C Integer b2.p; Real p; end A.C;
but Real p;
should be Integer p;
Change History (4)
comment:1 by , 10 years ago
Description: | modified (diff) |
---|---|
Owner: | changed from | to
Status: | new → accepted |
comment:2 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | accepted → closed |
comment:3 by , 10 years ago
Milestone: | Future → 1.9.3 |
---|
Note:
See TracTickets
for help on using tickets.
Fixed in r25277.