I have this testcase:
#[test_case(false => true; "Should invert")]
fn foo(statement: bool) -> bool {
statement
}
And the error I get is this:
left: `true`,
right: `false`,
It would be nice if when I read "right" it would be the corrent (right) expression.