ZhangHanDong / tao-of-rust-codes

《Rust编程之道》随书源码
https://ruststudy.github.io/tao_of_rust_docs/tao_of_rust/
MIT License
1.19k stars 172 forks source link

函数与闭包,代码示例2-14错误 #216

Closed victor-simida closed 5 years ago

victor-simida commented 5 years ago

页码与行数


文本或排版错误

暂无


代码错误

assert_eq!(math(||a+b), 5);
assert_eq!(math(|| a* b), 6);

这里的math应该改为closure_math,否则这里并不会调用上面定义的函数

Rust版本

错误信息