-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
rust-lang/rust
#140276Labels
from-craterA regression found via a crater run, not part of our test suiteA regression found via a crater run, not part of our test suite
Description
use std::future::Future;
trait Handler {}
struct W<T>(T);
trait SendTarget {
fn call(self) -> impl Future<Output = ()> + Send;
}
impl<T> SendTarget for W<T>
where
T: Handler + Send,
{
async fn call(self) {
todo!()
}
}
impl<T> SendTarget for T
where
T: Handler + Send,
{
async fn call(self) {
W(self).call().await
}
}
fn main() {}
Metadata
Metadata
Assignees
Labels
from-craterA regression found via a crater run, not part of our test suiteA regression found via a crater run, not part of our test suite
Type
Projects
Status
done
Milestone
Relationships
Development
Select code repository
Activity
compiler-errors commentedon Apr 25, 2025
Smaller:
[-]salvo_core regression[/-][+]salvo_core regression: RPITIT `type_of` cycle[/+]Rollup merge of rust-lang#140276 - compiler-errors:typeof-less-eagerl…
Rollup merge of rust-lang#140276 - compiler-errors:typeof-less-eagerl…
Rollup merge of rust-lang#140276 - compiler-errors:typeof-less-eagerl…
Unrolled build for rust-lang#140276
Rollup merge of #140276 - compiler-errors:typeof-less-eagerly, r=lcnr
lcnr commentedon Apr 29, 2025
fixed by rust-lang/rust#140276