mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
9 lines
244 B
Text
9 lines
244 B
Text
LL| |#![feature(test)]
|
|
LL| |//@ edition: 2021
|
|
LL| |//@ compile-flags: --test
|
|
LL| |
|
|
LL| |extern crate test;
|
|
LL| |
|
|
LL| |#[bench]
|
|
LL| 1|fn my_bench(_b: &mut test::Bencher) {}
|
|
|