| Summary: | TypeCastException on multidimensional array assignment | ||
|---|---|---|---|
| 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 bug has been marked as a duplicate of bug 356528 *** |
Build Identifier: 20110912 Debug or run the following: program pgm type BasicProgram {} myString string; twoDimensionalArray string[][] = [[ "one", "two" ], [ "three", "four" ], [ "five", "six" ] ]; function main() myString = twoDimensionalArray[2,1]; SysLib.writeStdout(myString); end end Get egl.lang.TypeCastException on the assignment. Reproducible: Always