Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 353525 - Compile error passing boxed parameter to another function
Summary: Compile error passing boxed parameter to another function
Status: CLOSED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: EDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-01 16:40 EDT by Justin Spadea CLA
Modified: 2017-02-23 14:15 EST (History)
2 users (show)

See Also:


Attachments

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