rust/src/test/ui/issues/issue-20831-debruijn.stderr

127 lines
4.7 KiB
Plaintext
Raw Normal View History

error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/issue-20831-debruijn.rs:28:5
|
2019-05-28 13:46:13 -05:00
LL | / fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
LL | | // Not obvious, but there is an implicit lifetime here -------^
2019-03-09 06:03:44 -06:00
LL | |
LL | |
... |
LL | | self.sub = t;
LL | | }
| |_____^ lifetime mismatch
|
= note: expected type `'a`
found type `'_`
2018-12-25 09:56:47 -06:00
note: the anonymous lifetime #2 defined on the method body at 28:5...
--> $DIR/issue-20831-debruijn.rs:28:5
|
2019-05-28 13:46:13 -05:00
LL | / fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
LL | | // Not obvious, but there is an implicit lifetime here -------^
2019-03-09 06:03:44 -06:00
LL | |
LL | |
... |
LL | | self.sub = t;
LL | | }
| |_____^
2019-10-10 18:58:35 -05:00
note: ...does not necessarily outlive the lifetime `'a` as defined on the impl at 26:6
2018-12-25 09:56:47 -06:00
--> $DIR/issue-20831-debruijn.rs:26:6
|
LL | impl<'a> Publisher<'a> for MyStruct<'a> {
| ^^
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/issue-20831-debruijn.rs:28:5
|
2019-05-28 13:46:13 -05:00
LL | / fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
LL | | // Not obvious, but there is an implicit lifetime here -------^
2019-03-09 06:03:44 -06:00
LL | |
LL | |
... |
LL | | self.sub = t;
LL | | }
| |_____^ lifetime mismatch
|
= note: expected type `'a`
found type `'_`
2019-10-10 18:58:35 -05:00
note: the lifetime `'a` as defined on the impl at 26:6...
2018-12-25 09:56:47 -06:00
--> $DIR/issue-20831-debruijn.rs:26:6
|
LL | impl<'a> Publisher<'a> for MyStruct<'a> {
| ^^
2018-12-25 09:56:47 -06:00
note: ...does not necessarily outlive the anonymous lifetime #2 defined on the method body at 28:5
--> $DIR/issue-20831-debruijn.rs:28:5
|
2019-05-28 13:46:13 -05:00
LL | / fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
LL | | // Not obvious, but there is an implicit lifetime here -------^
2019-03-09 06:03:44 -06:00
LL | |
LL | |
... |
LL | | self.sub = t;
LL | | }
| |_____^
2018-07-15 16:11:54 -05:00
error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements
--> $DIR/issue-20831-debruijn.rs:28:33
2018-07-15 16:11:54 -05:00
|
LL | fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-07-15 16:11:54 -05:00
|
2018-12-25 09:56:47 -06:00
note: first, the lifetime cannot outlive the anonymous lifetime #2 defined on the method body at 28:5...
--> $DIR/issue-20831-debruijn.rs:28:5
2018-07-15 16:11:54 -05:00
|
2019-05-28 13:46:13 -05:00
LL | / fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
2018-07-15 16:11:54 -05:00
LL | | // Not obvious, but there is an implicit lifetime here -------^
2019-03-09 06:03:44 -06:00
LL | |
LL | |
2018-07-15 16:11:54 -05:00
... |
LL | | self.sub = t;
LL | | }
| |_____^
2019-10-10 18:58:35 -05:00
note: ...but the lifetime must also be valid for the lifetime `'a` as defined on the impl at 26:6...
2018-12-25 09:56:47 -06:00
--> $DIR/issue-20831-debruijn.rs:26:6
2018-07-15 16:11:54 -05:00
|
LL | impl<'a> Publisher<'a> for MyStruct<'a> {
| ^^
note: ...so that the types are compatible
--> $DIR/issue-20831-debruijn.rs:28:33
|
LL | fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: expected `Publisher<'_>`
found `Publisher<'_>`
2018-07-15 16:11:54 -05:00
2020-01-08 11:02:10 -06:00
error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements
--> $DIR/issue-20831-debruijn.rs:28:33
2020-01-08 11:02:10 -06:00
|
LL | fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-08 11:02:10 -06:00
|
note: first, the lifetime cannot outlive the anonymous lifetime #2 defined on the method body at 28:5...
--> $DIR/issue-20831-debruijn.rs:28:5
|
LL | / fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
LL | | // Not obvious, but there is an implicit lifetime here -------^
LL | |
LL | |
... |
LL | | self.sub = t;
LL | | }
| |_____^
note: ...but the lifetime must also be valid for the lifetime `'a` as defined on the impl at 26:6...
--> $DIR/issue-20831-debruijn.rs:26:6
|
LL | impl<'a> Publisher<'a> for MyStruct<'a> {
| ^^
note: ...so that the types are compatible
--> $DIR/issue-20831-debruijn.rs:28:33
2020-01-08 11:02:10 -06:00
|
LL | fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: expected `Publisher<'_>`
found `Publisher<'_>`
2020-01-08 11:02:10 -06:00
error: aborting due to 4 previous errors
2018-07-15 16:11:54 -05:00
2019-09-12 08:00:44 -05:00
Some errors have detailed explanations: E0308, E0495.
For more information about an error, try `rustc --explain E0308`.