mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
9 lines
176 B
Rust
9 lines
176 B
Rust
#![cfg_attr(feature = "nightly", feature(impl_trait_in_assoc_type))]
|
|
|
|
struct Foo<T>(T);
|
|
|
|
#[embassy_executor::task]
|
|
async fn foo(_x: Foo<impl Sized + 'static>) {}
|
|
|
|
fn main() {}
|