1+ error[E0308]: mismatched types
2+ --> $DIR/issue-20831-debruijn.rs:38:5
3+ |
4+ LL | / fn subscribe(&mut self, t : Box<Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
5+ LL | | // Not obvious, but there is an implicit lifetime here -------^
6+ LL | | //~^^ ERROR cannot infer
7+ LL | | //~| ERROR mismatched types
8+ ... |
9+ LL | | self.sub = t;
10+ LL | | }
11+ | |_____^ lifetime mismatch
12+ |
13+ = note: expected type `'a`
14+ found type ``
15+ note: the anonymous lifetime #2 defined on the method body at 38:5...
16+ --> $DIR/issue-20831-debruijn.rs:38:5
17+ |
18+ LL | / fn subscribe(&mut self, t : Box<Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
19+ LL | | // Not obvious, but there is an implicit lifetime here -------^
20+ LL | | //~^^ ERROR cannot infer
21+ LL | | //~| ERROR mismatched types
22+ ... |
23+ LL | | self.sub = t;
24+ LL | | }
25+ | |_____^
26+ note: ...does not necessarily outlive the lifetime 'a as defined on the impl at 36:6
27+ --> $DIR/issue-20831-debruijn.rs:36:6
28+ |
29+ LL | impl<'a> Publisher<'a> for MyStruct<'a> {
30+ | ^^
31+
32+ error[E0308]: mismatched types
33+ --> $DIR/issue-20831-debruijn.rs:38:5
34+ |
35+ LL | / fn subscribe(&mut self, t : Box<Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
36+ LL | | // Not obvious, but there is an implicit lifetime here -------^
37+ LL | | //~^^ ERROR cannot infer
38+ LL | | //~| ERROR mismatched types
39+ ... |
40+ LL | | self.sub = t;
41+ LL | | }
42+ | |_____^ lifetime mismatch
43+ |
44+ = note: expected type `'a`
45+ found type ``
46+ note: the lifetime 'a as defined on the impl at 36:6...
47+ --> $DIR/issue-20831-debruijn.rs:36:6
48+ |
49+ LL | impl<'a> Publisher<'a> for MyStruct<'a> {
50+ | ^^
51+ note: ...does not necessarily outlive the anonymous lifetime #2 defined on the method body at 38:5
52+ --> $DIR/issue-20831-debruijn.rs:38:5
53+ |
54+ LL | / fn subscribe(&mut self, t : Box<Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
55+ LL | | // Not obvious, but there is an implicit lifetime here -------^
56+ LL | | //~^^ ERROR cannot infer
57+ LL | | //~| ERROR mismatched types
58+ ... |
59+ LL | | self.sub = t;
60+ LL | | }
61+ | |_____^
62+
163error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements
264 --> $DIR/issue-20831-debruijn.rs:38:5
365 |
466LL | / fn subscribe(&mut self, t : Box<Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
567LL | | // Not obvious, but there is an implicit lifetime here -------^
668LL | | //~^^ ERROR cannot infer
7- LL | | //
69+ LL | | //~| ERROR mismatched types
870... |
971LL | | self.sub = t;
1072LL | | }
@@ -16,7 +78,7 @@ note: first, the lifetime cannot outlive the anonymous lifetime #2 defined on th
1678LL | / fn subscribe(&mut self, t : Box<Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
1779LL | | // Not obvious, but there is an implicit lifetime here -------^
1880LL | | //~^^ ERROR cannot infer
19- LL | | //
81+ LL | | //~| ERROR mismatched types
2082... |
2183LL | | self.sub = t;
2284LL | | }
@@ -30,6 +92,7 @@ LL | impl<'a> Publisher<'a> for MyStruct<'a> {
3092 expected Publisher<'_>
3193 found Publisher<'_>
3294
33- error: aborting due to previous error
95+ error: aborting due to 3 previous errors
3496
35- For more information about this error, try `rustc --explain E0495`.
97+ Some errors occurred: E0308, E0495.
98+ For more information about an error, try `rustc --explain E0308`.
0 commit comments