main()1*301dc716SAlex Crichton fn main() {
2*301dc716SAlex Crichton     let mut buf = Vec::new();
3*301dc716SAlex Crichton     for _ in 0..100 {
4*301dc716SAlex Crichton         buf.push(wasip2::clocks::monotonic_clock::subscribe_duration(0));
5*301dc716SAlex Crichton     }
6*301dc716SAlex Crichton }
7