1 2 3 4 5 6 7
//! Tokens after the `; "label"` of a `#[test_case]` are rejected by the macro. use test_better::test_case; #[test_case(1 ; "a label" and then some)] fn takes_one(_value: i32) {} fn main() {}