Community
Participate
Working Groups
I20070501-0010 * using the following code, debug to a breakpoint in main() * set a breakpoint on the first line of args() * turn on pref to suspend at breakpoints in evaluations * evaluate line of code in main * hits breakpoint * resume > var view shows "invalid stack frame" and top frame is not re-selected public class Varargs { public static void main(String[] args) { new Varargs().args("GO GO GO", 1, 2, 3, 4); } public void args(String sam, int... x) { System.out.println(sam); for (int i : x) { System.out.println(i); } } }
*** This bug has been marked as a duplicate of bug 167733 ***
Changing OS from Mac OS to Mac OS X as per bug 185991