about summary refs log tree commit diff
path: root/src/libcore/benches/any.rs
blob: ceb507aad38f429379c5811aeb2d13350032db4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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));
    });
}