| Summary: | TypeCastException on assignment of multidimensional int to string | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | broy2 |
| Component: | EDT | Assignee: | Project Inbox <edt.javagen-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | jeffdouglas |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
This is a duplicate of 356528. *** This bug has been marked as a duplicate of bug 356528 *** OK |
Build Identifier: 20110901 Debug or run the following program. Get: egl.lang.TypeCastException program exception type BasicProgram {} myInt int = 3; my2DimensionInt INT[][] = [[1,2],[3,4]]; myString string; function main() myString = myInt; myString = my2DimensionInt[2,2]; // Exception sysLib.writeStdout(myString); end end Reproducible: Always