From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/async-await/issue-64130-3-other.rs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/test/ui/async-await/issue-64130-3-other.rs (limited to 'src/test/ui/async-await/issue-64130-3-other.rs') diff --git a/src/test/ui/async-await/issue-64130-3-other.rs b/src/test/ui/async-await/issue-64130-3-other.rs new file mode 100644 index 000000000..52801c35b --- /dev/null +++ b/src/test/ui/async-await/issue-64130-3-other.rs @@ -0,0 +1,26 @@ +#![feature(auto_traits)] +#![feature(negative_impls)] +// edition:2018 + +// This tests the 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. + +auto trait Qux {} + +struct Foo; + +impl !Qux for Foo {} + +fn is_qux(t: T) {} + +async fn bar() { + let x = Foo; + baz().await; +} + +async fn baz() {} + +fn main() { + is_qux(bar()); + //~^ ERROR the trait bound `Foo: Qux` is not satisfied in `impl Future` +} -- cgit v1.2.3