| Summary: | Concat assignment of a record to an array produces BoxingExpression when it shouldn't | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Jeff Douglas <jeffdouglas> |
| Component: | EDT | Assignee: | Project Inbox <edt.compiler-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P1 | CC: | pharmon |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
This is no longer creating a boxing expression Verified |
I don't think that this logic should produce a boxing expression. package acme.xxxx; program tester {} function main() //append the test case summary to result root summary resultSum ResultSummary; resultRootSum ResultSummaryRoot; resultRootSum.trSummary ::= resultSum; end end Record ResultSummary pkgName String {@XMLAttribute{}}; //package name name String{@XMLAttribute{}}; //test library part name end Record ResultSummaryRoot trSummary ResultSummary[]{}; end