rust/tests/ui/async-await/issue-64130-3-other.rs

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

30 lines
698 B
Rust
Raw Normal View History

// revisions: no_drop_tracking drop_tracking drop_tracking_mir
// [drop_tracking] compile-flags: -Zdrop-tracking
// [drop_tracking_mir] compile-flags: -Zdrop-tracking-mir
#![feature(auto_traits)]
#![feature(negative_impls)]
// edition:2018
2022-10-12 11:12:19 -05:00
// This tests the unspecialized async-await-specific error when futures don't implement an
// auto trait (which is not Send or Sync) due to some type that was captured.
2021-11-16 18:16:23 -06:00
auto trait Qux {}
struct Foo;
impl !Qux for Foo {}
2021-11-16 18:16:23 -06:00
fn is_qux<T: Qux>(t: T) {}
async fn bar() {
2023-01-25 21:51:26 -06:00
let x = Box::new(Foo);
baz().await;
}
2021-11-16 18:16:23 -06:00
async fn baz() {}
fn main() {
is_qux(bar());
2021-11-16 18:16:23 -06:00
//~^ ERROR the trait bound `Foo: Qux` is not satisfied in `impl Future<Output = ()>`
}