Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 357693

Summary: NullValueException on concatenation when string is null
Product: z_Archived Reporter: broy2
Component: EDTAssignee: 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:

Description broy2 CLA 2011-09-14 17:11:05 EDT
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
Comment 1 Jeff Douglas CLA 2011-09-14 22:52:32 EDT
fixed
Comment 2 broy2 CLA 2011-09-20 12:32:45 EDT
Verified in 20110920 build.