Rust - Is the stack size different for debug vs. release mode?

前端 未结 0 1823
隐瞒了意图╮
隐瞒了意图╮ 2021-01-25 22:37

Consider the following program:

fn recursive_call(x: u32) -> u32 {
    println!("x: {:?}", x);
    recursive_call(x +1)
}

fn main() {
    recursive_         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题