| Summary: | When record is in parameter, it gives null pointer exception | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Jing Qian <jqian> |
| Component: | EDT | Assignee: | Project Inbox <edt.javagen-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | blocker | ||
| Priority: | P3 | CC: | jeffdouglas |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
fixed This high severity defect was fixed several weeks ago, so I am closing. |
package a; Record myR f1 String; end // basic program // program Simple type BasicProgram {} function main() sysLib.writeStdOUt("abc"); r myR; r.f1 = "this is field1 for record myR"; function2(r); end function function2(r myR in) sysLib.writeStdout("in parameter record: " + r.f1); end end try this program, the generated code isn't copying the the value to the temporary variable. This is blocking defect, because the test framework is depending on it