summary refs log tree commit diff
path: root/src/test/ui/issues/issue-26093.rs
blob: 7895c90068fe2ebf4e7393c24b840ca4ed32ff4a (plain)
1
2
3
4
5
6
7
8
9
10
macro_rules! not_a_place {
    ($thing:expr) => {
        $thing = 42;
        //~^ ERROR invalid left-hand side expression
    }
}

fn main() {
    not_a_place!(99);
}