1 2 3 4 5 6 7 8 9 10 11
#[req(main_id)] fn traced_fn() {} #[cfg(test)] mod test { #[test] #[req(other_id, bad_id)] fn test_fn() { traced_fn(); } }