windbg-debug
windbg-debug copied to clipboard
Locals not shown
Hey, I tried this Rust code:
fn main() {
let test = "Test";
println!("Hello, world!");
println!("{}", test);
}
Placed a breakpoint at the two println lines. I do not see anything in the Locals window however and for some reason it breaks on the first breakpoint but when let continue doesn't break on the second.
I am using these values:
- Extension version: 0.3.4
- Rust version:
rustc 1.24.1 (d3ae9a9e0 2018-02-27) - Debugging tools from the official site: https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/index
Is there anything else I can contribute to help resolve this?