Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 354263 - ! operand not honored in function parameter expression
Summary: ! operand not honored in function parameter expression
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-08-09 11:02 EDT by Kathy Carroll CLA
Modified: 2017-02-23 14:14 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 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.