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

Bug 354263

Summary: ! operand not honored in function parameter expression
Product: z_Archived Reporter: Kathy Carroll <carrollk>
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 Kathy Carroll CLA 2011-08-09 11:02:23 EDT
expect all three test to have result be true

program test type BasicProgram {}
	function main()
		conditional boolean = false;
		assertTrue("Test 1 ", (!conditional) );
		assertTrue("Test 2 ", !conditional );
		assertTrue("Test 3 ", (conditional == false) );
	end
	
	function assertTrue(variation string, result boolean in)
		syslib.writeStdOut(variation + result);
	end
end
Comment 1 Jeff Douglas CLA 2011-08-09 13:15:23 EDT
fixed
Comment 2 Kathy Carroll CLA 2011-08-10 08:29:45 EDT
verified
Comment 3 Lisa Lasher CLA 2011-10-11 16:05:51 EDT
Closing this defect.