mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
84ac80f192
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
14 lines
280 B
Rust
14 lines
280 B
Rust
use core::any::*;
|
|
|
|
use test::{black_box, Bencher};
|
|
|
|
#[bench]
|
|
fn bench_downcast_ref(b: &mut Bencher) {
|
|
b.iter(|| {
|
|
let mut x = 0;
|
|
let mut y = &mut x as &mut dyn Any;
|
|
black_box(&mut y);
|
|
black_box(y.downcast_ref::<isize>() == Some(&0));
|
|
});
|
|
}
|