11 lines
169 B
Rust
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);
|
|
}
|