#[llam::test]
fn attribute_test_accepts_unit_return() {
llam::task::yield_now();
}
#[llam::test(profile = "debug_safe")]
fn attribute_test_accepts_result_return() -> llam::Result<()> {
let (tx, rx) = llam::channel::bounded::<usize>(1)?;
llam::spawn!(move {
tx.send(7).expect("send failed");
});
assert_eq!(rx.recv()?, 7);
Ok(())
}