summary refs log tree commit diff
path: root/tests/ui/borrowck/move-error-snippets-ext.rs
blob: 6dd68438f179c83107fdd8bba345fa906254e81f (plain)
1
2
3
4
5
6
7
//@ ignore-auxiliary (used by `./move-error-snippets.rs`)

macro_rules! aaa {
    ($c:ident) => {{
        let a = $c;
    }}
}