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

20 lines
726 B
Plaintext
Raw Normal View History

2017-11-17 00:59:45 -06:00
error[E0496]: lifetime name `'s` shadows a lifetime name that is already in scope
--> $DIR/shadow.rs:17:12
|
16 | impl Foo<&'s u8> {
| -- first declared here
2017-11-20 06:13:27 -06:00
17 | fn bar<'s>(&self, x: &'s u8) {} //~ ERROR shadows a lifetime name
2017-11-17 00:59:45 -06:00
| ^^ lifetime 's already in scope
error[E0496]: lifetime name `'s` shadows a lifetime name that is already in scope
--> $DIR/shadow.rs:18:19
|
16 | impl Foo<&'s u8> {
| -- first declared here
2017-11-20 06:13:27 -06:00
17 | fn bar<'s>(&self, x: &'s u8) {} //~ ERROR shadows a lifetime name
18 | fn baz(x: for<'s> fn(&'s u32)) {} //~ ERROR shadows a lifetime name
2017-11-17 00:59:45 -06:00
| ^^ lifetime 's already in scope
error: aborting due to 2 previous errors