summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/issue-64130-3-other.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/async-await/issue-64130-3-other.rs')
-rw-r--r--src/test/ui/async-await/issue-64130-3-other.rs26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/ui/async-await/issue-64130-3-other.rs b/src/test/ui/async-await/issue-64130-3-other.rs
deleted file mode 100644
index 630fb2c41..000000000
--- a/src/test/ui/async-await/issue-64130-3-other.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-#![feature(auto_traits)]
-#![feature(negative_impls)]
-// edition:2018
-
-// 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.
-
-auto trait Qux {}
-
-struct Foo;
-
-impl !Qux for Foo {}
-
-fn is_qux<T: 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<Output = ()>`
-}