Bug 26881

Summary: Yoyo in the debugger again
Product: [Eclipse Project] JDT Reporter: Olivier Thomann <Olivier_Thomann>
Component: CoreAssignee: JDT-Core-Inbox <jdt-core-inbox>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 2.1   
Target Milestone: 2.1 M4   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description Olivier Thomann CLA 2002-11-21 12:26:02 EST
Using 1119 + JDT/Core head content, I still get a yoyo behavior in the debugger
on this test case:
public class A {
	public static void main(String[] args) {
		boolean b = false;
		int i = 6;
		if ((i == 5)
			? b : !b) {   	
		   	System.out.println(i);
		   }
	}
}
Comment 1 Olivier Thomann CLA 2002-11-21 13:23:02 EST
Fixed and released in 2.1 stream.
Regression tests added.
Comment 2 David Audel CLA 2002-12-17 11:09:57 EST
Verified.