mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-26 08:27:51 +00:00
9 lines
131 B
Rust
9 lines
131 B
Rust
#![feature(test)]
|
|
//@ edition: 2021
|
|
//@ compile-flags: --test
|
|
|
|
extern crate test;
|
|
|
|
#[bench]
|
|
fn my_bench(_b: &mut test::Bencher) {}
|