rust/src/test/ui/in-band-lifetimes/shadow.stderr

21 lines
792 B
Plaintext
Raw Normal View History

2017-11-16 22:59:45 -08:00
error[E0496]: lifetime name `'s` shadows a lifetime name that is already in scope
2018-12-25 08:56:47 -07:00
--> $DIR/shadow.rs:7:12
2017-11-16 22:59:45 -08:00
|
2018-02-23 03:42:32 +03:00
LL | impl Foo<&'s u8> {
2017-11-16 22:59:45 -08:00
| -- first declared here
2018-02-23 03:42:32 +03:00
LL | fn bar<'s>(&self, x: &'s u8) {} //~ ERROR shadows a lifetime name
2017-11-16 22:59:45 -08:00
| ^^ lifetime 's already in scope
error[E0496]: lifetime name `'s` shadows a lifetime name that is already in scope
2018-12-25 08:56:47 -07:00
--> $DIR/shadow.rs:8:19
2017-11-16 22:59:45 -08:00
|
2018-02-23 03:42:32 +03:00
LL | impl Foo<&'s u8> {
2017-11-16 22:59:45 -08:00
| -- first declared here
2018-02-25 02:01:39 +03:00
LL | fn bar<'s>(&self, x: &'s u8) {} //~ ERROR shadows a lifetime name
2018-02-23 03:42:32 +03:00
LL | fn baz(x: for<'s> fn(&'s u32)) {} //~ ERROR shadows a lifetime name
2017-11-16 22:59:45 -08:00
| ^^ lifetime 's already in scope
error: aborting due to 2 previous errors
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0496`.