#![allow(dead_code)] use graph_macro::Testing; #[derive(Debug, Testing)] struct Haha { size: usize, } #[test] fn it_works() { println!("it works: {:?}", Haha { size: 0 }); }