#[bench]
Enables an async benchmark function.
#![feature(test)] extern crate test; #[smol_potat::bench] async fn bench() { println!("hello world"); }