| Summary: | NullValueException on concatenation when string is null | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | broy2 |
| Component: | EDT | Assignee: | Project Inbox <edt.javagen-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | jeffdouglas |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
fixed Verified in 20110920 build. |
Build Identifier: 20110914 Debug or run the following program. Will be egl.lang.NullValueException on concatenation when var2 is null. program nullableProb type BasicProgram {} function main() result1, var1, var2, var3 STRING?; var1="Sun"; var3="day"; result1 = var1 :: var2 :: var3; // result is "Sunday" end end Reproducible: Always