-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
this crate does not compile under edition 2024 because of one rule inside a macro
error: patterns are not allowed to reset the default binding mode in Edition 2024
--> src/future/join/tuple.rs:249:21
|
249 | let ($(ref mut $F,)+) = this.outputs;
| -^^^^^^^^^^^^^^^^
| |
| help: desugar the match ergonomics: `&mut`
places to fix:
-
futures-concurrency/src/future/join/tuple.rs
Line 249 in abc7a90
let ($(ref mut $F,)+) = this.outputs; -
let ($(ref mut $F,)+) = this.outputs; -
maybe a couple of others?
nanoqsh, yoshuawuyts and reneleonhardt
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers