Skip to content

Commit 25820b0

Browse files
authored
Unrolled build for rust-lang#125008
Rollup merge of rust-lang#125008 - Dirbaio:test-issue-122775, r=compiler-errors Add test for rust-lang#122775 Closes rust-lang#122775
2 parents 78a7751 + ebf574f commit 25820b0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//@ check-pass
2+
3+
#![feature(type_alias_impl_trait)]
4+
5+
fn spawn<T, F>(future: F) -> impl Sized
6+
where
7+
F: FnOnce() -> T,
8+
{
9+
future
10+
}
11+
12+
fn spawn_task(sender: &'static ()) -> impl Sized {
13+
type Tait = impl Sized + 'static;
14+
spawn::<Tait, _>(move || sender)
15+
}
16+
17+
fn main() {}

0 commit comments

Comments
 (0)