Files
rust/tests/ui/async-await/higher-ranked-auto-trait-14.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
789 B
Rust
Raw Normal View History

2025-07-13 23:17:21 +00:00
// Repro for <https://github.com/rust-lang/rust/issues/124757#issue-2279603232>.
//@ edition: 2021
//@ revisions: assumptions no_assumptions
//@[assumptions] compile-flags: -Zhigher-ranked-assumptions
//@[assumptions] check-pass
//@[no_assumptions] known-bug: #110338
use std::collections::HashSet;
use std::future::Future;
trait MyTrait {
fn blah(&self, x: impl Iterator<Item = u32>) -> impl Future<Output = ()> + Send;
}
fn foo<T: MyTrait + Send + Sync>(
val: T,
unique_x: HashSet<u32>,
) -> impl Future<Output = ()> + Send {
let cached = HashSet::new();
async move {
let xs = unique_x.union(&cached)
// .copied() // works
.map(|x| *x) // error
;
let blah = val.blah(xs.into_iter()).await;
}
}
fn main() {}