1error: unknown macro variable `k`
2  --> $DIR/issue-61053-unbound.rs:5:55
3   |
4LL |     ($( $i:ident = $($j:ident),+ );*) => { $( $( $i = $k; )+ )* };
5   |                                                       ^^
6   |
7note: the lint level is defined here
8  --> $DIR/issue-61053-unbound.rs:1:9
9   |
10LL | #![deny(meta_variable_misuse)]
11   |         ^^^^^^^^^^^^^^^^^^^^
12
13error: unknown macro variable `k`
14  --> $DIR/issue-61053-unbound.rs:14:63
15   |
16LL |             ($( $i:ident = $($j:ident),+ );*) => { $( $( $i = $k; )+ )* };
17   |                                                               ^^
18
19error: unknown macro variable `k`
20  --> $DIR/issue-61053-unbound.rs:20:29
21   |
22LL |             () => { $( $i = $k)+ };
23   |                             ^^
24
25error: aborting due to 3 previous errors
26
27