]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hygiene/duplicate_lifetimes.stderr
Rollup merge of #90202 - matthewjasper:xcrate-hygiene, r=petrochenkov
[rust.git] / src / test / ui / hygiene / duplicate_lifetimes.stderr
1 error[E0263]: lifetime name `'a` declared twice in the same scope
2   --> $DIR/duplicate_lifetimes.rs:8:14
3    |
4 LL |     fn g<$a, 'a>() {}
5    |              ^^ declared twice
6 ...
7 LL | m!('a);
8    | ------
9    | |  |
10    | |  previous declaration here
11    | in this macro invocation
12    |
13    = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
14
15 error[E0263]: lifetime name `'a` declared twice in the same scope
16   --> $DIR/duplicate_lifetimes.rs:13:14
17    |
18 LL |     fn h<$a, 'a>() {}
19    |              ^^ declared twice
20 ...
21 LL | n!('a);
22    | ------
23    | |  |
24    | |  previous declaration here
25    | in this macro invocation
26    |
27    = note: this error originates in the macro `n` (in Nightly builds, run with -Z macro-backtrace for more info)
28
29 error: aborting due to 2 previous errors
30
31 For more information about this error, try `rustc --explain E0263`.