Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
macro_rules! not_a_place {
($thing:expr) => {
$thing = 42;
//~^ ERROR invalid left-hand side of assignment
$thing += 42;
}
fn main() {
not_a_place!(99);