Bugs item #1439138, was opened at 2006-02-26 14:09
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=1439138&group_id=44253
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Compiler integration
Group: Serious
Status: Open
Resolution: None
Priority: 5
Submitted By: Betty O'Neil (eoneil)
Assigned to: Nobody/Anonymous (nobody)
Summary: rerun not correctly done
Initial Comment:
A second run of a program uses old values left over in
class objects. For example:
public class ShowBug {
public static int v = 10;
public static void main(String args[]) {
System.out.println("v = "+v);
v++;
}
}
Inteactions window:
Welcome to DrJava.
> java ShowBug
v = 10
> java ShowBug
v = 11
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=1439138&group_id=44253
|