11 lines
277 B
Plaintext
11 lines
277 B
Plaintext
|
error[E0263]: lifetime name `'a` declared twice in the same scope
|
||
|
--> $DIR/E0263.rs:11:16
|
||
|
|
|
||
|
11 | fn foo<'a, 'b, 'a>(x: &'a str, y: &'b str) {
|
||
|
| -- ^^ declared twice
|
||
|
| |
|
||
|
| previous declaration here
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|