]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0263.stderr
Bless tests.
[rust.git] / src / test / ui / error-codes / E0263.stderr
1 error[E0263]: lifetime name `'a` declared twice in the same scope
2   --> $DIR/E0263.rs:1:16
3    |
4 LL | fn foo<'a, 'b, 'a>(x: &'a str, y: &'b str) {
5    |        --      ^^ lifetime `'a` already in scope
6    |        |
7    |        first declared here
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0263`.