summaryrefslogtreecommitdiff
path: root/exercises/17_tests/tests2.rs
blob: f0899e1b967e05c8725d8c700e2d962274f69039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// This test has a problem with it -- make the test compile! Make the test pass!
// Make the test fail!

fn main() {
    // You can optionally experiment here.
}

#[cfg(test)]
mod tests {
    #[test]
    fn you_can_assert_eq() {
        assert_eq!();
    }
}