Open andy-hanson opened 5 years ago
I have code like:
int f(int x) { int y = x + 1; return y * 2; }
When debugging, I see y as a variable but not x. The "locals" and "autos" views are identical as far as I can tell.
y
x
I have code like:
When debugging, I see
y
as a variable but notx
. The "locals" and "autos" views are identical as far as I can tell.