|
1 | 1 | error: return type captures more lifetimes than trait definition
|
2 |
| - --> $DIR/signature-mismatch.rs:17:47 |
| 2 | + --> $DIR/signature-mismatch.rs:36:47 |
3 | 3 | |
|
4 | 4 | LL | fn async_fn<'a>(&self, buff: &'a [u8]) -> impl Future<Output = Vec<u8>> + 'a {
|
5 | 5 | | -- this lifetime was captured ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
6 | 6 | |
|
7 | 7 | note: hidden type must only reference lifetimes captured by this impl trait
|
8 |
| - --> $DIR/signature-mismatch.rs:11:40 |
| 8 | + --> $DIR/signature-mismatch.rs:17:40 |
9 | 9 | |
|
10 | 10 | LL | fn async_fn(&self, buff: &[u8]) -> impl Future<Output = Vec<u8>>;
|
11 | 11 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
12 | 12 | = note: hidden type inferred to be `impl Future<Output = Vec<u8>> + 'a`
|
13 | 13 |
|
14 |
| -error: aborting due to previous error |
| 14 | +error: return type captures more lifetimes than trait definition |
| 15 | + --> $DIR/signature-mismatch.rs:41:57 |
| 16 | + | |
| 17 | +LL | fn async_fn_early<'a: 'a>(&self, buff: &'a [u8]) -> impl Future<Output = Vec<u8>> + 'a { |
| 18 | + | -- this lifetime was captured ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 19 | + | |
| 20 | +note: hidden type must only reference lifetimes captured by this impl trait |
| 21 | + --> $DIR/signature-mismatch.rs:18:57 |
| 22 | + | |
| 23 | +LL | fn async_fn_early<'a: 'a>(&self, buff: &'a [u8]) -> impl Future<Output = Vec<u8>>; |
| 24 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 25 | + = note: hidden type inferred to be `impl Future<Output = Vec<u8>> + 'a` |
| 26 | + |
| 27 | +error: return type captures more lifetimes than trait definition |
| 28 | + --> $DIR/signature-mismatch.rs:49:10 |
| 29 | + | |
| 30 | +LL | fn async_fn_multiple<'a, 'b>( |
| 31 | + | -- this lifetime was captured |
| 32 | +... |
| 33 | +LL | ) -> impl Future<Output = Vec<u8>> + Captures2<'a, 'b> { |
| 34 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 35 | + | |
| 36 | +note: hidden type must only reference lifetimes captured by this impl trait |
| 37 | + --> $DIR/signature-mismatch.rs:20:12 |
| 38 | + | |
| 39 | +LL | -> impl Future<Output = Vec<u8>> + Captures<'a>; |
| 40 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 41 | + = note: hidden type inferred to be `impl Future<Output = Vec<u8>> + Captures2<'a, 'b>` |
| 42 | + |
| 43 | +error[E0309]: the parameter type `T` may not live long enough |
| 44 | + --> $DIR/signature-mismatch.rs:58:10 |
| 45 | + | |
| 46 | +LL | ) -> impl Future<Output = Vec<u8>> { |
| 47 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ...so that the type `impl Future<Output = Vec<u8>>` will meet its required lifetime bounds... |
| 48 | + | |
| 49 | +note: ...that is required by this bound |
| 50 | + --> $DIR/signature-mismatch.rs:25:42 |
| 51 | + | |
| 52 | +LL | ) -> impl Future<Output = Vec<u8>> + 'a; |
| 53 | + | ^^ |
| 54 | +help: consider adding an explicit lifetime bound... |
| 55 | + | |
| 56 | +LL | fn async_fn_reduce_outlive<'a, 'b, T: 'a>( |
| 57 | + | ++++ |
| 58 | + |
| 59 | +error: aborting due to 4 previous errors |
15 | 60 |
|
| 61 | +For more information about this error, try `rustc --explain E0309`. |
0 commit comments