mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-26 20:00:27 +00:00
15 lines
308 B
Rust
15 lines
308 B
Rust
#![cfg_attr(feature = "nightly", feature(impl_trait_in_assoc_type))]
|
|
|
|
use embassy_executor::SendSpawner;
|
|
|
|
#[embassy_executor::task]
|
|
async fn task(non_send: *mut ()) {
|
|
println!("{}", non_send as usize);
|
|
}
|
|
|
|
fn send_spawn(s: SendSpawner) {
|
|
s.spawn(task(core::ptr::null_mut()).unwrap());
|
|
}
|
|
|
|
fn main() {}
|