Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor committed Apr 28, 2019
1 parent 938d4ff commit 52356ca
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/test/ui/async-with-closure.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// compile-pass
// edition:2018

#![feature(async_await, await_macro)]

trait MyClosure {
type Args;
}

impl<R> MyClosure for dyn FnMut() -> R
where R: 'static {
type Args = ();
}

struct MyStream<C: ?Sized + MyClosure> {
x: C::Args,
}

async fn get_future<C: ?Sized + MyClosure>(_stream: MyStream<C>) {}

async fn f() {
let messages: MyStream<FnMut()> = unimplemented!();
await!(get_future(messages));
}

fn main() {}

0 comments on commit 52356ca

Please sign in to comment.