Rollup merge of #52622 - estebank:lifetime-multispan, r=nikomatsakis
Use MultiSpan in E0707 and E709
This commit is contained in:
commit
291a62064c
2 changed files with 6 additions and 6 deletions
|
|
@ -1,8 +1,8 @@
|
|||
error[E0709]: multiple different lifetimes used in arguments of `async fn`
|
||||
--> $DIR/async-fn-multiple-lifetimes.rs:17:49
|
||||
--> $DIR/async-fn-multiple-lifetimes.rs:17:47
|
||||
|
|
||||
LL | async fn multiple_named_lifetimes<'a, 'b>(_: &'a u8, _: &'b u8) {}
|
||||
| --^^^^^^^^^-- different lifetime here
|
||||
| ^^ ^^ different lifetime here
|
||||
| |
|
||||
| first lifetime here
|
||||
|
|
||||
|
|
@ -12,7 +12,7 @@ error[E0707]: multiple elided lifetimes used in arguments of `async fn`
|
|||
--> $DIR/async-fn-multiple-lifetimes.rs:26:39
|
||||
|
|
||||
LL | async fn multiple_elided_lifetimes(_: &u8, _: &u8) {}
|
||||
| -^^^^^^^- different lifetime here
|
||||
| ^ ^ different lifetime here
|
||||
| |
|
||||
| first lifetime here
|
||||
|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue