We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When I debugging this , the gdb hanged. Later I found whenever the GDB stepping out a function, it hangs.
The mininum code to reproduce the issue is listed below fn b()->i32{ return 0; } fn a(){ b(); } fn main() { a(); }
fn b()->i32{ return 0; } fn a(){ b(); } fn main() { a(); }
Activity