marco_test_two/
lib.rs

1pub fn hello_breaking_2() {
2    println!("Hello world!!!");
3}
4
5#[cfg(test)]
6mod tests {
7    #[test]
8    fn it_works() {
9        let result = 2 + 2;
10        assert_eq!(result, 4);
11    }
12}