about summary refs log tree commit diff
path: root/tests/ui/async-await/send-bound-async-closure.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-03-21 13:28:59 +0000
committerbors <bors@rust-lang.org>2024-03-21 13:28:59 +0000
commit2627e9f3012a97d3136b3e11bf6bd0853c38a534 (patch)
treea31d7bc829f5121aa89a9442fa6084f79bf84bdb /tests/ui/async-await/send-bound-async-closure.rs
parent03994e498df79aa1f97f7bbcfd52d57c8e865049 (diff)
parent62e414d3af8ad08aec8c4a0a29e2de1265944592 (diff)
downloadrust-2627e9f3012a97d3136b3e11bf6bd0853c38a534.tar.gz
rust-2627e9f3012a97d3136b3e11bf6bd0853c38a534.zip
Auto merge of #122822 - matthiaskrgr:rollup-rjgmnbe, r=matthiaskrgr
Rollup of 8 pull requests

Successful merges:

 - #122222 (deref patterns: bare-bones feature gate and typechecking)
 - #122358 (Don't ICE when encountering bound regions in generator interior type)
 - #122696 (Add bare metal riscv32 target.)
 - #122773 (make "expected paren or brace" error translatable)
 - #122795 (Inherit `RUSTC_BOOTSTRAP` when testing wasm)
 - #122799 (Replace closures with `_` when suggesting fully qualified path for method call)
 - #122801 (Fix misc printing issues in emit=stable_mir)
 - #122806 (Make `type_ascribe!` not a built-in)

Failed merges:

 - #122771 (add some comments to hir::ModuleItems)

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'tests/ui/async-await/send-bound-async-closure.rs')
-rw-r--r--tests/ui/async-await/send-bound-async-closure.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/ui/async-await/send-bound-async-closure.rs b/tests/ui/async-await/send-bound-async-closure.rs
index 2732fa5d466..e4a9ae4cc75 100644
--- a/tests/ui/async-await/send-bound-async-closure.rs
+++ b/tests/ui/async-await/send-bound-async-closure.rs
@@ -1,5 +1,8 @@
 //@ edition: 2021
 //@ check-pass
+//@ revisions: current next
+//@ ignore-compare-mode-next-solver (explicit revisions)
+//@[next] compile-flags: -Znext-solver
 
 // This test verifies that we do not create a query cycle when typechecking has several inference
 // variables that point to the same coroutine interior type.