为什么会出现恐慌?
pub fn testbool() -> bool {
vec!['a', 'd', 'i', 'e', 'p', 'r']
.iter()
.enumerate()
.find(|(_i, &c)| c != 'c')
.is_none()
}
#[test]
fn test_testbool() {
assert!(testbool(), true);
}
---- test_testbool stdout ----
thread 'test_testbool' panicked at 'Box<Any>', src/lib.rs:11:5
note: Run with `RUST_BACKTRACE=1` environment variable to display a backtrace.
这可能很简单,但我不明白。
答案 0 :(得分:7)
您正在使用assert!
。期望第一个参数是布尔表达式。任何后续参数都被认为是格式字符串和参数:
assert!(testbool(), "Did not work: {}", 42);
thread 'test_testbool' panicked at 'Did not work: 42'
您可能想要删除assert!
的第二个参数或切换到assert_eq!
。
我认为根本的问题来自bug (#30143),在某些情况下,该格式允许将非格式字符串用作格式字符串。