rust/src/test/ui/issues/issue-26093.rs
2018-12-25 21:08:33 -07:00

11 lines
169 B
Rust

macro_rules! not_a_place {
($thing:expr) => {
$thing = 42;
//~^ ERROR invalid left-hand side expression
}
}
fn main() {
not_a_place!(99);
}