about summary refs log tree commit diff
path: root/src/tools/miri/tests/pass/shims/random.rs
blob: 2a5c8993662bed8e770f8d42ec16c8b7e2a66be1 (plain)
1
2
3
4
5
#![feature(random)]

fn main() {
    let _x: i32 = std::random::random(..);
}