blob: 7895c90068fe2ebf4e7393c24b840ca4ed32ff4a [file] [log] [blame]
macro_rules! not_a_place {
($thing:expr) => {
$thing = 42;
//~^ ERROR invalid left-hand side expression
}
}
fn main() {
not_a_place!(99);
}