2018-02-07 21:35:35 -06:00
|
|
|
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
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0263"
|