Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 357693 - NullValueException on concatenation when string is null
Summary: NullValueException on concatenation when string is null
Status: CLOSED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: EDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-09-14 17:11 EDT by broy2 CLA
Modified: 2017-02-23 14:19 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.