mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
23 lines
451 B
Rust
23 lines
451 B
Rust
//@ check-fail
|
|
|
|
#![feature(core_intrinsics, intrinsics)]
|
|
|
|
fn a() {
|
|
let _: unsafe extern "rust-intrinsic" fn(isize) -> usize = std::mem::transmute;
|
|
//~^ ERROR cannot coerce
|
|
}
|
|
|
|
fn b() {
|
|
let _ = std::mem::transmute as unsafe extern "rust-intrinsic" fn(isize) -> usize;
|
|
//~^ ERROR casting
|
|
}
|
|
|
|
fn c() {
|
|
let _ = [
|
|
std::intrinsics::likely,
|
|
std::intrinsics::unlikely,
|
|
//~^ ERROR cannot coerce
|
|
];
|
|
}
|
|
|
|
fn main() {}
|