mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
248 B
Rust
18 lines
248 B
Rust
//@ run-pass
|
|
#![feature(core_intrinsics)]
|
|
|
|
use std::intrinsics::assume;
|
|
|
|
unsafe fn f(x: i32) -> i32 {
|
|
assume(x == 34);
|
|
match x {
|
|
34 => 42,
|
|
_ => 30
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let x = unsafe { f(34) };
|
|
assert_eq!(x, 42);
|
|
}
|