Skip to content

Commit d2b0555

Browse files
authored
Rollup merge of #125008 - Dirbaio:test-issue-122775, r=compiler-errors
Add test for #122775 Closes #122775
2 parents e3fca20 + ebf574f commit d2b0555

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)