blob: 044ed9ec3e8706ddd5d7be282ea084eb6819dd6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// tests2.rs
// This test has a problem with it -- make the test compile! Make the test
// pass! Make the test fail! Execute `rustlings hint tests2` for hints :)
#[cfg(test)]
mod tests {
#[test]
fn you_can_assert_eq() {
assert_eq!();
}
}
|