mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-29 15:19:19 +00:00
16 lines
346 B
Rust
16 lines
346 B
Rust
// tests2.rs
|
|
//
|
|
// 這個測試有問題——請先讓測試編譯通過,然後讓測試成功,再故意讓測試失敗,以熟悉測試操作。
|
|
//
|
|
// 執行 `rustlings hint tests2` 或使用 `hint` 子命令獲取提示。
|
|
|
|
// I AM NOT DONE
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
#[test]
|
|
fn you_can_assert_eq() {
|
|
assert_eq!();
|
|
}
|
|
}
|