Skip to content

Commit 561f9fc

Browse files
authored
Rollup merge of rust-lang#60353 - JohnTitor:add-test, r=Centril
Add test not to forget resolved ICE closes rust-lang#55499 I added the example as a test. r? @pnkfelix
2 parents be6ade5 + 52356ca commit 561f9fc

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/test/ui/async-with-closure.rs

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// compile-pass
2+
// edition:2018
3+
4+
#![feature(async_await, await_macro)]
5+
6+
trait MyClosure {
7+
type Args;
8+
}
9+
10+
impl<R> MyClosure for dyn FnMut() -> R
11+
where R: 'static {
12+
type Args = ();
13+
}
14+
15+
struct MyStream<C: ?Sized + MyClosure> {
16+
x: C::Args,
17+
}
18+
19+
async fn get_future<C: ?Sized + MyClosure>(_stream: MyStream<C>) {}
20+
21+
async fn f() {
22+
let messages: MyStream<FnMut()> = unimplemented!();
23+
await!(get_future(messages));
24+
}
25+
26+
fn main() {}

0 commit comments

Comments
 (0)