about summary refs log tree commit diff
path: root/library/core/benches/any.rs
blob: 6b150432f874da31353f7af97ed4ba0148e7c640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use core::any::*;

use test::{Bencher, black_box};

#[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));
    });
}