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

Bug 353525

Summary: Compile error passing boxed parameter to another function
Product: z_Archived Reporter: Justin Spadea <jspadea>
Component: EDTAssignee: Project Inbox <edt.javagen-inbox>
Status: CLOSED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: jeffdouglas, lasher
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Linux   
Whiteboard:

Description Justin Spadea CLA 2011-08-01 16:40:07 EDT
program prog
	function main()
		func(10);
	end
	
	function func(i int)
		func2(i);
	end
	
	function func2(i int)
	end
end


Failing code:
i.ezeCopy(eze$Temp3);

Error:
The method ezeCopy(Integer) in the type AnyBoxedObject<Integer> is not applicable for the arguments (AnyBoxedObject<Integer>)
Comment 1 Jeff Douglas CLA 2011-08-05 10:50:09 EDT
fixed
Comment 2 Justin Spadea CLA 2011-09-13 16:02:41 EDT
Verified