blob: fe8a853f27b5273db2e6a8ca205b243b3004d2fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![allow(dead_code)]
use graph_macro::Testing;
#[derive(Debug, Testing)]
struct Haha {
size: usize,
}
#[test]
fn it_works() {
println!("it works: {:?}", Haha { size: 0 });
}
|