mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 06:47:34 +00:00
438455d18b
Signed-off-by: David Wood <david@davidtw.co>
26 lines
505 B
Rust
26 lines
505 B
Rust
#![feature(optin_builtin_traits)]
|
|
// 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: 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 std::future::Future`
|
|
}
|